:root {
  --acid: #b7f10f;
  --ink: #050505;
  --paper: #f2f0e9;
  --ticker-width: 210px;
  --stats-width: 210px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  text-transform: uppercase;
}

main, footer { margin-right: var(--ticker-width); margin-left: var(--stats-width); }

a { color: inherit; text-decoration: none; }
button { font: inherit; text-transform: inherit; }

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: var(--stats-width);
  width: calc(100% - var(--ticker-width) - var(--stats-width));
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  mix-blend-mode: difference;
  color: white;
}

.stats-rail {
  position: fixed;
  z-index: 12;
  top: 0;
  left: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: var(--stats-width);
  height: 100svh;
  border-right: 4px solid var(--ink);
  background: var(--acid);
}

.stats-rail-heading {
  padding: 15px 13px;
  border-bottom: 3px solid var(--ink);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .13em;
}

.stats-rail-values { display: flex; flex-direction: column; justify-content: center; }
.stats-rail-values > div { display: flex; min-height: 160px; flex-direction: column; justify-content: center; padding: 22px 16px; border-bottom: 3px solid var(--ink); }
.stats-rail-values > div:first-child { border-top: 3px solid var(--ink); }
.stats-rail-values span, .stats-rail-values small { font-size: 8px; font-weight: 900; letter-spacing: .12em; }
.stats-rail-values strong { margin: 12px 0 8px; font-size: clamp(28px, 2.5vw, 44px); line-height: .9; letter-spacing: -.055em; overflow-wrap: anywhere; }
.stats-rail .live-status { align-self: auto; margin: 0; border: 0; border-top: 3px solid var(--ink); border-radius: 0; padding: 15px 13px; font-size: 7px; white-space: normal; }

.sales-ticker {
  position: fixed;
  z-index: 12;
  top: 0;
  right: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: var(--ticker-width);
  height: 100svh;
  border-left: 4px solid var(--ink);
  background: var(--acid);
}

.ticker-heading,
.ticker-footer {
  position: relative;
  z-index: 2;
  padding: 15px 13px;
  background: var(--acid);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .13em;
}

.ticker-heading { border-bottom: 3px solid var(--ink); }
.ticker-footer { border-top: 3px solid var(--ink); }
.ticker-live-dot { display: inline-block; width: 7px; height: 7px; margin-right: 7px; border-radius: 50%; background: var(--ink); animation: live-pulse 1.8s ease-in-out infinite; }
.ticker-window { overflow: hidden; }

.ticker-track {
  display: flex;
  flex-direction: column;
  animation: ticker-down 32s linear infinite;
  will-change: transform;
}

.ticker-window:hover .ticker-track { animation-play-state: paused; }

.ticker-item {
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 10px;
  align-items: center;
  flex: 0 0 94px;
  min-height: 94px;
  padding: 10px;
  border-bottom: 2px solid var(--ink);
}

.ticker-item img {
  display: block;
  width: 66px;
  height: 66px;
  border: 2px solid var(--ink);
  border-radius: 48% 52% 45% 55% / 52% 46% 54% 48%;
  object-fit: cover;
}

.ticker-item span { min-width: 0; }
.ticker-item strong, .ticker-item small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ticker-item strong { margin-bottom: 7px; font-size: 16px; letter-spacing: -.03em; }
.ticker-item small { margin-top: 3px; font-size: 7px; font-weight: 900; letter-spacing: .05em; }

@keyframes ticker-down { from { transform: translateY(-50%); } to { transform: translateY(0); } }

.wordmark {
  display: block;
  width: 98px;
  height: 62px;
  border: 2px solid currentColor;
  border-radius: 48% 52% 45% 55% / 54% 46% 52% 48%;
  overflow: hidden;
  background: var(--acid);
  transform: rotate(-2deg);
}

.wordmark img { display: block; width: 100%; height: 100%; object-fit: cover; }

nav { display: flex; align-items: center; gap: 26px; }

.nav-link {
  position: relative;
  border: 0;
  padding: 5px 0;
  color: inherit;
  background: transparent;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .11em;
  cursor: pointer;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link.active::after { transform: scaleX(1); transform-origin: left; }

.nav-link span {
  margin-left: 5px;
  padding: 3px 5px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 8px;
}

.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 40% 60%;
  background: var(--acid);
  overflow: hidden;
}

.hero-copy {
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 110px 3vw 6vh 5vw;
}

.eyebrow, .section-heading > p, .label, footer p {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
}

h1 {
  max-width: 5ch;
  margin: 12px 0 20px;
  font-size: clamp(74px, 9.5vw, 170px);
  line-height: .76;
  letter-spacing: -.09em;
}

.intro {
  margin: 0;
  font-size: clamp(16px, 1.5vw, 24px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.04em;
}

.enter-link {
  align-self: flex-start;
  margin-top: 7vh;
  border-bottom: 2px solid currentColor;
  padding-bottom: 7px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
}

.enter-link span { display: inline-block; margin-left: 12px; transition: transform .2s ease; }
.enter-link:hover span { transform: translateY(4px); }

.hero-art {
  align-self: stretch;
  margin: 0;
  overflow: hidden;
}

.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 44% center;
  transform: scale(1.06) rotate(-1deg);
}

.doodle-parade {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  padding: 56px 0;
  border-top: 5px solid var(--ink);
  border-bottom: 5px solid var(--ink);
  background: var(--acid);
}

.doodle-parade::before,
.doodle-parade::after {
  position: absolute;
  z-index: 2;
  left: 0;
  width: 100%;
  overflow: hidden;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .22em;
  white-space: nowrap;
  pointer-events: none;
}

.doodle-parade::before { content: "ULTRA RARE • ONE MINUTE • ULTRA RARE • ONE MINUTE • ULTRA RARE • ONE MINUTE •"; top: 15px; }
.doodle-parade::after { content: "HAND DRAWN • NO SECOND TAKES • HAND DRAWN • NO SECOND TAKES • HAND DRAWN •"; bottom: 15px; text-align: right; }

.parade-row { width: 100%; overflow: hidden; }
.parade-row + .parade-row { margin-top: -22px; }

.parade-track {
  display: flex;
  width: max-content;
  animation: parade-left 34s linear infinite;
  will-change: transform;
}

.reverse .parade-track { animation-name: parade-right; animation-duration: 39s; }

.parade-track img {
  display: block;
  width: clamp(170px, 20vw, 330px);
  aspect-ratio: 1060 / 852;
  object-fit: cover;
  flex: 0 0 auto;
  margin-right: -1px;
  border: 3px solid var(--ink);
  border-radius: 48% 52% 46% 54% / 53% 45% 55% 47%;
  transform: rotate(var(--tilt, -1deg));
}

.parade-track img:nth-child(3n) { --tilt: 1.3deg; }
.parade-track img:nth-child(3n + 2) { --tilt: -.7deg; }

.parade-sticker {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: clamp(112px, 12vw, 172px);
  aspect-ratio: 1;
  border: 4px solid var(--ink);
  border-radius: 46% 54% 42% 58% / 56% 45% 55% 44%;
  color: var(--acid);
  background: var(--ink);
  font-size: clamp(15px, 1.5vw, 23px);
  font-weight: 900;
  line-height: .92;
  text-align: center;
  transform: translate(-50%, -50%) rotate(-7deg);
}

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

.collection {
  min-height: 100svh;
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 6vw;
  padding: 15vh 6vw;
}

.section-heading h2 {
  position: sticky;
  top: 100px;
  margin: 28px 0 0;
  font-size: clamp(50px, 7vw, 110px);
  line-height: .84;
  letter-spacing: -.08em;
}

.section-heading h2::after {
  content: "";
  display: block;
  width: 1.4em;
  height: 16px;
  margin: 22px 0 0 8px;
  border-top: 5px solid var(--ink);
  border-radius: 50%;
  transform: rotate(-4deg);
}

.rare-card { align-self: center; }
.rare-image { overflow: hidden; background: var(--acid); }

.rare-image img {
  display: block;
  width: 100%;
  aspect-ratio: 847 / 702;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
}

.rare-card:hover .rare-image img { transform: scale(1.025); }

.rare-meta {
  display: flex;
  justify-content: space-between;
  padding: 18px 2px;
  border-bottom: 2px solid var(--ink);
}

.rare-meta h3 {
  margin: 7px 0 0;
  font-size: clamp(28px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -.06em;
}

.rare-meta p { margin: 0; }
.number { font-weight: 800; font-size: 12px; }

.origin {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 6vw;
  padding: 11vh 6vw;
  border-top: 5px solid var(--ink);
  background: var(--ink);
  color: var(--acid);
}

.origin > .eyebrow { margin: 7px 0 0; }

.origin h2 {
  margin: 0;
  max-width: 9ch;
  font-size: clamp(54px, 8vw, 126px);
  line-height: .82;
  letter-spacing: -.08em;
}

.origin-note {
  grid-column: 2;
  max-width: 690px;
  margin-top: 6vh;
  border-top: 3px solid currentColor;
  padding-top: 22px;
}

.origin-note p {
  margin: 0 0 34px;
  font-size: clamp(18px, 2vw, 30px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.035em;
}

.origin-note a {
  display: inline-block;
  border-bottom: 3px solid currentColor;
  padding-bottom: 8px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
}

.origin-embed {
  grid-column: 1 / -1;
  margin-top: 8vh;
}

.origin-embed iframe {
  display: block;
  width: 100%;
  height: min(72vh, 760px);
  min-height: 520px;
  border: 3px solid var(--acid);
  background: var(--paper);
}

.origin-embed > p {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin: 0;
  border-bottom: 3px solid currentColor;
  padding: 13px 2px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .12em;
}

.origin-embed a { border-bottom: 1px solid currentColor; }

.scooped {
  padding: 13vh 5vw;
  border-top: 5px solid var(--ink);
  background: var(--acid);
}

.scooped-heading {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 7vh;
}

.scooped-heading h2 {
  margin: 12px auto 0 0;
  font-size: clamp(68px, 11vw, 170px);
  line-height: .76;
  letter-spacing: -.09em;
}

.updated { margin: 0; font-size: 10px; font-weight: 900; letter-spacing: .12em; white-space: nowrap; }
.live-status { align-self: flex-end; margin: 0 0 10px; border: 2px solid var(--ink); border-radius: 999px; padding: 7px 10px; font-size: 9px; font-weight: 900; letter-spacing: .1em; white-space: nowrap; }
.live-status.is-live::before { content: ""; display: inline-block; width: 7px; height: 7px; margin-right: 7px; border-radius: 50%; background: var(--ink); animation: live-pulse 1.8s ease-in-out infinite; }
@keyframes live-pulse { 50% { opacity: .3; transform: scale(.72); } }

.market-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 8vh;
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
}

.market-stats > div { display: flex; flex-direction: column; padding: 24px; border-right: 3px solid var(--ink); }
.market-stats > div:last-child { border-right: 0; }
.market-stats span, .market-stats small { font-size: 9px; font-weight: 900; letter-spacing: .14em; }
.market-stats strong { margin: 12px 0 7px; font-size: clamp(28px, 4vw, 62px); line-height: .88; letter-spacing: -.06em; }

.scooped-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4vw 2vw; }
.scoop-card { display: block; }

.scoop-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  border: 3px solid var(--ink);
  border-radius: 48% 52% 45% 55% / 52% 46% 54% 48%;
  object-fit: cover;
  transition: transform .25s ease, border-radius .25s ease;
}

.scoop-card:nth-child(even) img { transform: rotate(1deg); }
.scoop-card:nth-child(3n) img { transform: rotate(-1deg); }
.scoop-card:hover img { border-radius: 42% 58% 54% 46% / 58% 42% 56% 44%; transform: rotate(-2deg) scale(1.015); }

.scoop-info { padding: 13px 4px 0; }
.scoop-info p { display: flex; justify-content: space-between; gap: 12px; margin: 0 0 7px; font-size: 11px; font-weight: 900; letter-spacing: .06em; }
.scoop-info p:first-child { padding-bottom: 9px; border-bottom: 2px solid var(--ink); font-size: 15px; }
.scoop-info small { font-size: 8px; letter-spacing: .12em; }
.scoop-info .scoop-metadata { margin-top: 10px; color: color-mix(in srgb, var(--ink) 68%, transparent); font-size: 9px; }
.scoop-info .scoop-metadata time { font-weight: 900; }
.all-activity { display: inline-block; margin-top: 9vh; border-bottom: 3px solid var(--ink); padding-bottom: 8px; font-size: 11px; font-weight: 900; letter-spacing: .12em; }

.proof {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 7vw;
  min-height: 82svh;
  padding: 12vh 6vw;
  border-top: 5px solid var(--ink);
}

.proof-heading h2 {
  margin: 28px 0 0;
  font-size: clamp(72px, 12vw, 190px);
  line-height: .75;
  letter-spacing: -.09em;
}

.proof-link {
  align-self: center;
  display: flex;
  min-height: 360px;
  flex-direction: column;
  justify-content: space-between;
  border: 4px solid var(--ink);
  border-radius: 48% 52% 45% 55% / 54% 46% 52% 48%;
  padding: clamp(34px, 5vw, 72px);
  background: var(--acid);
  transform: rotate(1.5deg);
  transition: border-radius .25s ease, transform .25s ease;
}

.proof-link:hover {
  border-radius: 42% 58% 55% 45% / 47% 55% 45% 53%;
  transform: rotate(-1deg) scale(1.015);
}

.proof-link span {
  max-width: 12ch;
  font-size: clamp(28px, 4vw, 62px);
  font-weight: 900;
  line-height: .9;
  letter-spacing: -.055em;
}

.proof-link strong { font-size: 11px; letter-spacing: .14em; }


.manifesto {
  display: grid;
  min-height: 92svh;
  place-items: center;
  padding: 8vw;
  background: var(--ink);
  color: var(--acid);
  text-align: center;
}

.manifesto p {
  margin: 0;
  font-size: clamp(54px, 10vw, 170px);
  font-weight: 900;
  line-height: .83;
  letter-spacing: -.085em;
}

footer {
  display: flex;
  justify-content: space-between;
  padding: 28px;
  background: var(--acid);
}

@media (max-width: 760px) {
  .site-header { padding: 18px; }
  .wordmark { width: 72px; height: 48px; }
  nav { gap: 14px; }
  .nav-link { font-size: 9px; }
  .hero { grid-template-columns: 1fr; grid-template-rows: 47svh 53svh; }
  .hero-art { grid-row: 1; }
  .hero-copy { grid-row: 2; justify-content: flex-start; padding: 24px 24px 48px; }
  h1 { font-size: clamp(66px, 23vw, 110px); }
  .enter-link { margin-top: auto; }
  .collection { grid-template-columns: 1fr; padding: 100px 24px; }
  .doodle-parade { min-height: 390px; padding: 48px 0; }
  .parade-row + .parade-row { margin-top: -10px; }
  .parade-track img { width: 190px; }
  .section-heading h2 { position: static; }
  .rare-card { margin-top: 36px; }
  .origin { grid-template-columns: 1fr; padding: 80px 24px; }
  .origin h2 { margin-top: 28px; }
  .origin-note { grid-column: 1; margin-top: 48px; }
  .origin-embed { margin-top: 56px; }
  .origin-embed iframe { height: 68vh; min-height: 480px; }
  .origin-embed > p { display: block; line-height: 1.8; }
  .origin-embed > p a { display: table; }
  .scooped { padding: 90px 24px; }
  .scooped-heading { display: block; }
  .live-status { display: inline-block; margin-top: 24px; }
  .updated { margin-top: 28px; }
  .market-stats { grid-template-columns: 1fr; }
  .market-stats > div { border-right: 0; border-bottom: 3px solid var(--ink); }
  .market-stats > div:last-child { border-bottom: 0; }
  .scooped-grid { grid-template-columns: repeat(2, 1fr); gap: 38px 14px; }
  .proof { grid-template-columns: 1fr; min-height: auto; padding: 90px 24px; }
  .proof-link { min-height: 320px; margin-top: 28px; }
  footer { padding: 22px; }
}

@media (max-width: 1100px) {
  main, footer { margin-right: 0; margin-left: 0; }
  .site-header { left: 0; width: 100%; }
  .sales-ticker { display: none; }
  .stats-rail { position: relative; z-index: 1; display: block; width: 100%; height: auto; padding-top: 78px; border-right: 0; border-bottom: 4px solid var(--ink); }
  .stats-rail-heading { display: none; }
  .stats-rail-values { display: grid; grid-template-columns: repeat(3, 1fr); }
  .stats-rail-values > div { min-height: 130px; border-top: 3px solid var(--ink); border-right: 3px solid var(--ink); border-bottom: 0; }
  .stats-rail-values > div:last-child { border-right: 0; }
  .stats-rail .live-status { text-align: center; }
}

@media (max-width: 520px) {
  .site-header { padding: 14px 12px; }
  .wordmark { width: 54px; height: 42px; }
  nav { gap: 8px; }
  .nav-link { font-size: 7.5px; letter-spacing: .07em; }
  .stats-rail-values { grid-template-columns: 1fr; }
  .stats-rail-values > div { min-height: 105px; border-right: 0; border-top: 0; border-bottom: 3px solid var(--ink); }
  .stats-rail-values > div:first-child { border-top: 3px solid var(--ink); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
  .parade-track { animation-play-state: paused; }
  .ticker-track { animation-play-state: paused; }
}
