:root {
  --ink: #050505;
  --paper: #f4f1e8;
  --white: #fffdf7;
  --silver: #c9d0d4;
  --blue: #062cff;
  --cyan: #00e5ff;
  --pink: #d92f9b;
  --acid: #ceff22;
  --orange: #ff7a00;
  --violet: #8b5cff;
  --line: rgba(5, 5, 5, 0.18);
  --max: 1240px;
  --mx: 0.5;
  --my: 0.5;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  background:
    linear-gradient(90deg, rgba(0, 60, 255, 0.11) 1px, transparent 1px),
    linear-gradient(0deg, rgba(5, 5, 5, 0.08) 1px, transparent 1px),
    linear-gradient(135deg, #f6f0e4 0%, #eafcff 34%, #faf8ee 64%, #f2ffe0 100%);
  background-size: 46px 46px, 46px 46px, auto;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  opacity: 0.12;
  background-image:
    repeating-linear-gradient(0deg, rgba(5, 5, 5, 0.88) 0 1px, transparent 1px 4px),
    radial-gradient(circle at 50% 50%, transparent 0 45%, rgba(5, 5, 5, 0.16) 100%);
  mix-blend-mode: multiply;
}

body::after {
  content: "LUMI MAGAZINE ISSUE 00";
  position: fixed;
  right: -8.8rem;
  top: 50%;
  z-index: 4;
  color: rgba(5, 5, 5, 0.48);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  transform: rotate(90deg);
  pointer-events: none;
}

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

button,
a {
  font: inherit;
}

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

.atmosphere {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  mix-blend-mode: multiply;
  opacity: 0.8;
}

.page-light {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(112deg, transparent 0 35%, rgba(255, 255, 255, 0.72) 43%, transparent 54%),
    radial-gradient(circle at calc(var(--mx) * 100%) calc(var(--my) * 100%), rgba(255, 255, 255, 0.82), transparent 18rem);
  mix-blend-mode: soft-light;
}

.scroll-meter {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 20;
  width: 100%;
  height: 0.34rem;
  background: linear-gradient(90deg, var(--ink), var(--blue), var(--cyan), var(--acid));
  transform: scaleX(0);
  transform-origin: left;
}

.issue {
  position: relative;
  z-index: 2;
}

.cover {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: stretch;
  padding: 4.3rem max(1rem, calc((100vw - var(--max)) / 2)) 1rem;
  overflow: hidden;
  isolation: isolate;
}

.cover::before {
  content: "";
  position: absolute;
  inset: 4rem 1rem 1rem;
  z-index: -2;
  border: 1px solid rgba(5, 5, 5, 0.18);
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.1), rgba(0, 229, 255, 0.24) 28%, transparent 72%, rgba(6, 44, 255, 0.34)),
    conic-gradient(from 120deg at 72% 44%, #ffffff, #bcefff, #f4f1e8, #efffd0, #9af5ff, #ffffff);
  clip-path: polygon(0 0, 88% 0, 100% 12%, 100% 100%, 9% 100%, 0 89%);
  filter: saturate(1.2) contrast(1.02);
  opacity: 0.94;
}

.cover::after {
  content: "";
  position: absolute;
  inset: 4rem 1rem 1rem;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.16) 0 1px, transparent 1px 11px),
    linear-gradient(120deg, transparent 0 38%, rgba(255, 255, 255, 0.88) 45%, transparent 53%);
  clip-path: polygon(0 0, 88% 0, 100% 12%, 100% 100%, 9% 100%, 0 89%);
  mix-blend-mode: screen;
  opacity: 0.72;
}

.ticker {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 6;
  height: 2.3rem;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-block: 1px solid rgba(5, 5, 5, 0.82);
  color: var(--white);
  background: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  contain: paint;
}

.ticker-top {
  top: 0;
}

.ticker span {
  flex: 0 0 100%;
  min-width: 0;
  white-space: nowrap;
  animation: ticker 18s linear infinite;
}

.cover-grid {
  min-height: calc(100svh - 7rem);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(18rem, 0.78fr);
  grid-template-rows: auto 1fr auto;
  gap: 1.1rem 1.4rem;
  align-items: end;
}

.masthead {
  grid-column: 1 / -1;
  grid-row: 1;
  align-self: start;
  z-index: 4;
  padding-top: 1.2rem;
}

.eyebrow,
.issue-code,
.winner-kicker {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow {
  color: rgba(5, 5, 5, 0.66);
}

.masthead h1 {
  max-width: 100%;
  margin: 0.35rem 0 0;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: clamp(4.25rem, 14vw, 13.8rem);
  line-height: 0.72;
  letter-spacing: 0;
  text-transform: uppercase;
}

.masthead h1 span {
  display: block;
}

.masthead h1 span:first-child {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(5, 5, 5, 0.86);
  text-shadow:
    0.045em 0.045em 0 rgba(0, 229, 255, 0.64),
    -0.026em 0.032em 0 rgba(6, 44, 255, 0.32);
}

.masthead h1 span:last-child {
  color: var(--ink);
  text-shadow:
    0.055em 0.055em 0 rgba(206, 255, 34, 0.64),
    -0.03em 0.032em 0 rgba(0, 229, 255, 0.38);
}

.issue-code {
  width: fit-content;
  margin-top: 0.8rem;
  padding: 0.46rem 0.68rem;
  border: 1px solid rgba(5, 5, 5, 0.74);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 6px 6px 0 rgba(0, 229, 255, 0.38);
}

.cover-story {
  position: relative;
  grid-column: 2;
  grid-row: 1 / -1;
  align-self: start;
  justify-self: end;
  width: min(100%, 31rem);
  z-index: 3;
  margin-top: clamp(8.4rem, 14vh, 10.4rem);
  transform: translate3d(calc((var(--mx) - 0.5) * -18px), calc((var(--my) - 0.5) * -18px), 0) rotate(1.2deg);
  transition: transform 220ms ease;
}

.cover-frame {
  position: relative;
  border: 1px solid rgba(5, 5, 5, 0.86);
  background: var(--ink);
  box-shadow:
    20px 20px 0 rgba(6, 44, 255, 0.28),
    -14px -14px 0 rgba(206, 255, 34, 0.48);
  overflow: hidden;
  aspect-ratio: 1;
}

.cover-frame::before {
  content: "";
  position: absolute;
  inset: -32%;
  z-index: 2;
  background: linear-gradient(105deg, transparent 34%, rgba(255, 255, 255, 0.82), transparent 48%);
  transform: translateX(-50%) rotate(8deg);
  animation: cover-shine 4.8s ease-in-out infinite;
  mix-blend-mode: screen;
  pointer-events: none;
}

.cover-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 0 58%, rgba(5, 5, 5, 0.72) 100%),
    repeating-linear-gradient(0deg, transparent 0 5px, rgba(255, 255, 255, 0.18) 5px 7px);
}

.cover-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.04);
  transform: scale(1.02);
}

.cover-lines {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.9rem;
  z-index: 4;
  display: grid;
  gap: 0.25rem;
  color: var(--white);
  text-transform: uppercase;
}

.cover-lines span:first-child {
  color: var(--acid);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.cover-lines span:nth-child(2) {
  font-family: "Arial Black", Impact, sans-serif;
  font-size: clamp(2.4rem, 6vw, 5.4rem);
  line-height: 0.84;
}

.cover-lines span:last-child {
  font-size: 0.84rem;
  font-weight: 900;
}

.price-tag {
  position: absolute;
  top: 0.78rem;
  right: 0.78rem;
  z-index: 4;
  width: 3.2rem;
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border: 1px solid rgba(5, 5, 5, 0.72);
  color: var(--ink);
  background: var(--acid);
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 1.25rem;
  transform: rotate(7deg);
}

.cover-copy {
  grid-column: 1;
  grid-row: 2 / span 2;
  align-self: end;
  max-width: 38rem;
  padding-bottom: 2.8rem;
}

.cover-copy p {
  margin: 0;
  color: rgba(5, 5, 5, 0.78);
  font-size: clamp(1rem, 2.2vw, 1.55rem);
  font-weight: 800;
  line-height: 1.45;
}

.enter-link {
  position: relative;
  width: fit-content;
  min-height: 3rem;
  display: inline-flex;
  align-items: center;
  margin-top: 1.25rem;
  padding: 0.74rem 1rem;
  border: 1px solid var(--ink);
  color: var(--white);
  background: var(--ink);
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 8px 8px 0 rgba(6, 44, 255, 0.38);
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.enter-link:hover,
.enter-link:focus-visible {
  color: var(--ink);
  background: var(--acid);
  box-shadow: 8px 8px 0 rgba(0, 229, 255, 0.5);
  transform: translateY(-2px);
}

.cover-ribbon {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(5, 5, 5, 0.86);
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(16px) saturate(1.3);
}

.cover-ribbon span {
  min-height: 3rem;
  display: grid;
  place-items: center;
  padding: 0.5rem;
  color: rgba(5, 5, 5, 0.78);
  font-size: 0.86rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.cover-ribbon span + span {
  border-left: 1px solid rgba(5, 5, 5, 0.3);
}

.manifesto,
.runway,
.market-page,
.finale {
  width: calc(100% - 2rem);
  max-width: var(--max);
  margin: 0 auto;
}

.manifesto {
  min-height: 72svh;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(22rem, 0.78fr);
  gap: clamp(1rem, 4vw, 4rem);
  align-items: center;
  padding: 6rem 0 5rem;
}

.manifesto-text {
  position: relative;
  min-width: 0;
}

.manifesto-text::before {
  content: "00";
  position: absolute;
  left: -0.1em;
  top: -0.6em;
  z-index: -1;
  color: rgba(6, 44, 255, 0.1);
  font-family: "Arial Black", Impact, sans-serif;
  font-size: min(32vw, 24rem);
  line-height: 1;
}

.manifesto h2,
.runway h2,
.finale h2 {
  margin: 0.35rem 0 0;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: clamp(3rem, 8.5vw, 7.4rem);
  line-height: 0.86;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: break-word;
}

.manifesto h2 {
  max-width: 9ch;
  font-size: clamp(3.2rem, 7vw, 6.4rem);
}

.manifesto-lede {
  max-width: 42rem;
  margin: 1.4rem 0 0;
  color: rgba(5, 5, 5, 0.74);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.12rem, 2vw, 1.55rem);
  line-height: 1.42;
}

.manifesto-panel {
  position: relative;
  min-width: 0;
  padding: clamp(1rem, 2vw, 1.5rem);
  border: 1px solid rgba(5, 5, 5, 0.78);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(246, 240, 228, 0.62)),
    linear-gradient(90deg, rgba(0, 229, 255, 0.18), rgba(206, 255, 34, 0.16));
  box-shadow: 14px 14px 0 rgba(6, 44, 255, 0.14);
  backdrop-filter: blur(12px);
}

.manifesto-panel::before {
  content: "";
  position: absolute;
  inset: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.78);
  pointer-events: none;
}

.manifesto-panel p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(5, 5, 5, 0.78);
  font-size: 1.04rem;
  font-weight: 800;
  line-height: 1.62;
}

.manifesto-panel p + p {
  margin-top: 1rem;
}

.runway {
  padding: 2rem 0 5.5rem;
}

.runway-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(18rem, 0.58fr);
  align-items: end;
  gap: clamp(1rem, 4vw, 3rem);
  margin-bottom: 1.3rem;
  border-bottom: 1px solid rgba(5, 5, 5, 0.28);
}

.runway h2 {
  font-size: clamp(3.2rem, 8vw, 7.4rem);
}

.runway-dek {
  margin: 0 0 1.1rem;
  color: rgba(5, 5, 5, 0.68);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 1.6vw, 1.3rem);
  line-height: 1.45;
}

.winner-stack {
  display: grid;
  gap: 1rem;
}

.winner {
  position: relative;
  min-height: clamp(31rem, 62vh, 42rem);
  display: grid;
  grid-template-columns: minmax(19rem, 0.95fr) minmax(22rem, 1.05fr);
  border: 1px solid rgba(5, 5, 5, 0.82);
  background: rgba(255, 255, 255, 0.62);
  overflow: hidden;
  box-shadow: 0 22px 44px rgba(5, 5, 5, 0.12);
  transform: translateY(0);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.winner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, 0.82), transparent 48%);
  transform: translateX(-100%);
  transition: opacity 180ms ease, transform 620ms ease;
  mix-blend-mode: screen;
}

.winner:hover,
.winner:focus-within {
  box-shadow: 0 30px 72px rgba(5, 5, 5, 0.18);
  transform: translateY(-4px);
}

.winner:hover::before,
.winner:focus-within::before {
  opacity: 1;
  transform: translateX(100%);
}

.winner-cover {
  min-height: clamp(38rem, 78vh, 54rem);
  grid-template-columns: minmax(24rem, 1.04fr) minmax(23rem, 0.96fr);
}

.winner-fit,
.winner-glam,
.winner-hair,
.winner-face,
.winner-y2k,
.winner-creator {
  grid-column: 1 / -1;
}

.winner:nth-child(even) .winner-media {
  order: 2;
}

.winner:nth-child(even) .winner-copy {
  border-left: 0;
  border-right: 1px solid rgba(5, 5, 5, 0.82);
}

.winner-media {
  position: relative;
  display: block;
  min-height: 0;
  padding: 0;
  border: 0;
  color: inherit;
  background: var(--ink);
  cursor: pointer;
  overflow: hidden;
}

.winner-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 480ms ease, filter 480ms ease;
}

.winner:hover .winner-media img,
.winner:focus-within .winner-media img {
  transform: scale(1.055);
  filter: saturate(1.14) contrast(1.04);
}

.winner-number {
  position: absolute;
  right: 0.65rem;
  top: 0.65rem;
  z-index: 3;
  min-width: 3.2rem;
  min-height: 2.2rem;
  display: inline-grid;
  place-items: center;
  padding: 0.34rem 0.54rem;
  border: 1px solid rgba(5, 5, 5, 0.82);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.8);
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 0.92rem;
  box-shadow: 5px 5px 0 rgba(0, 229, 255, 0.34);
}

.winner-copy {
  position: relative;
  z-index: 4;
  display: grid;
  align-content: center;
  gap: 0.8rem;
  min-width: 0;
  padding: clamp(1.2rem, 3vw, 2.6rem);
  border-left: 1px solid rgba(5, 5, 5, 0.82);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94), rgba(246, 240, 228, 0.76)),
    repeating-linear-gradient(90deg, rgba(5, 5, 5, 0.06) 0 1px, transparent 1px 9px);
}

.winner-copy h3 {
  max-width: 13ch;
  margin: 0;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: clamp(2.15rem, 4.9vw, 5.1rem);
  line-height: 0.86;
  text-transform: uppercase;
  overflow-wrap: normal;
}

.winner-copy p {
  margin: 0;
}

.winner-dek {
  max-width: 36rem;
  color: rgba(5, 5, 5, 0.86);
  font-size: clamp(1.06rem, 1.75vw, 1.42rem);
  font-weight: 900;
  line-height: 1.35;
}

.winner-note {
  max-width: 37rem;
  color: rgba(5, 5, 5, 0.72);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 1.25vw, 1.14rem);
  font-weight: 700;
  line-height: 1.58;
}

.nft-link {
  width: fit-content;
  min-height: 2.6rem;
  display: inline-flex;
  align-items: center;
  margin-top: 0.3rem;
  padding: 0.62rem 0.78rem;
  border: 1px solid currentColor;
  color: var(--ink);
  background: rgba(206, 255, 34, 0.88);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 5px 5px 0 rgba(6, 44, 255, 0.22);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.nft-link:hover,
.nft-link:focus-visible {
  background: var(--white);
  box-shadow: 5px 5px 0 rgba(0, 229, 255, 0.34);
  transform: translateY(-2px);
}

.winner-kicker {
  color: var(--blue);
}

.winner-cover .winner-kicker,
.winner-cover .winner-copy h3 {
  color: var(--ink);
}

.winner-cover .winner-copy {
  background:
    linear-gradient(90deg, rgba(206, 255, 34, 0.92), rgba(255, 255, 255, 0.78)),
    repeating-linear-gradient(90deg, rgba(5, 5, 5, 0.08) 0 1px, transparent 1px 10px);
}

.winner-fit .winner-copy {
  background:
    linear-gradient(135deg, rgba(6, 44, 255, 0.92), rgba(0, 118, 255, 0.68)),
    var(--white);
}

.winner-fit .winner-copy,
.winner-fit .winner-kicker,
.winner-fit .winner-dek,
.winner-fit .winner-note {
  color: var(--white);
}

.winner-fit .nft-link {
  color: var(--ink);
}

.winner-glam .winner-copy {
  background:
    linear-gradient(135deg, rgba(201, 208, 212, 0.46), rgba(255, 255, 255, 0.92)),
    var(--white);
}

.winner-hair .winner-kicker {
  color: var(--orange);
}

.winner-face .winner-copy {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(5, 5, 5, 0.96), rgba(5, 5, 5, 0.72)),
    var(--ink);
}

.winner-face .winner-kicker,
.winner-face .winner-dek,
.winner-face .winner-note {
  color: rgba(255, 255, 255, 0.78);
}

.winner-face .nft-link {
  color: var(--ink);
}

.winner-y2k .winner-kicker {
  color: var(--cyan);
}

.winner-creator .winner-kicker {
  color: var(--blue);
}

.market-page {
  padding: 0 0 5.5rem;
}

.market-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(20rem, 0.7fr);
  gap: clamp(1rem, 4vw, 3rem);
  align-items: end;
  margin-bottom: 1rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(5, 5, 5, 0.82);
  border-bottom: 1px solid rgba(5, 5, 5, 0.22);
}

.market-heading h2 {
  margin: 0.3rem 0 0;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: clamp(3rem, 7vw, 6.7rem);
  line-height: 0.86;
  text-transform: uppercase;
}

.market-heading p:last-child {
  margin: 0;
  color: rgba(5, 5, 5, 0.68);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  font-weight: 700;
  line-height: 1.5;
}

.market-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.market-card {
  position: relative;
  min-height: 13rem;
  display: grid;
  grid-template-columns: 7rem minmax(0, 1fr);
  gap: 0.8rem;
  align-items: stretch;
  padding: 0.72rem;
  border: 1px solid rgba(5, 5, 5, 0.82);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(244, 241, 232, 0.68)),
    repeating-linear-gradient(0deg, rgba(5, 5, 5, 0.06) 0 1px, transparent 1px 8px);
  overflow: hidden;
  box-shadow: 8px 8px 0 rgba(5, 5, 5, 0.06);
}

.market-card:first-child {
  grid-column: span 2;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(5, 5, 5, 0.96), rgba(5, 5, 5, 0.74)),
    var(--ink);
  box-shadow: 10px 10px 0 rgba(0, 229, 255, 0.24);
}

.market-card img {
  width: 100%;
  height: 100%;
  min-height: 10rem;
  object-fit: cover;
  border: 1px solid rgba(5, 5, 5, 0.7);
  filter: saturate(1.08) contrast(1.02);
}

.market-card div {
  min-width: 0;
  display: grid;
  align-content: space-between;
  gap: 0.55rem;
}

.market-card span {
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.market-card:first-child span {
  color: var(--acid);
}

.market-card h3 {
  max-width: 100%;
  margin: 0;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: clamp(1.05rem, 1.55vw, 1.45rem);
  line-height: 0.96;
  text-transform: uppercase;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.market-card p {
  margin: 0;
  color: rgba(5, 5, 5, 0.64);
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1.25;
}

.market-card:first-child p {
  color: rgba(255, 255, 255, 0.7);
}

.market-card a {
  width: fit-content;
  min-height: 2.3rem;
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.62rem;
  border: 1px solid currentColor;
  color: var(--ink);
  background: var(--acid);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.market-card a:hover,
.market-card a:focus-visible {
  box-shadow: 5px 5px 0 rgba(6, 44, 255, 0.28);
  transform: translateY(-2px);
}

.finale {
  min-height: 68svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(15rem, 0.42fr);
  gap: 1rem;
  align-items: center;
  padding: 3rem 0 6rem;
}

.finale-copy p:not(.eyebrow) {
  max-width: 34rem;
  margin: 1rem 0 0;
  color: rgba(5, 5, 5, 0.7);
  font-size: 1.1rem;
  font-weight: 800;
}

.seal {
  position: relative;
  width: min(100%, 20rem);
  justify-self: end;
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border: 1px solid rgba(5, 5, 5, 0.82);
  border-radius: 50%;
  background:
    repeating-conic-gradient(from 0deg, var(--ink) 0 10deg, var(--acid) 10deg 20deg);
  box-shadow:
    14px 14px 0 rgba(255, 56, 184, 0.32),
    -12px -12px 0 rgba(0, 229, 255, 0.32);
  animation: seal-spin 18s linear infinite;
}

.seal::before {
  content: "";
  position: absolute;
  inset: 1.25rem;
  border: 1px solid rgba(5, 5, 5, 0.82);
  border-radius: 50%;
  background: var(--white);
}

.seal span {
  position: relative;
  z-index: 1;
  max-width: 10rem;
  color: var(--ink);
  font-family: "Arial Black", Impact, sans-serif;
  text-align: center;
  text-transform: uppercase;
}

.seal span:first-child {
  font-size: 2.5rem;
  line-height: 0.86;
}

.seal span:last-child {
  margin-top: 4.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.lightbox {
  width: min(100% - 2rem, 54rem);
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.62);
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 30px 90px rgba(5, 5, 5, 0.58);
}

.lightbox::backdrop {
  background:
    linear-gradient(135deg, rgba(0, 60, 255, 0.28), rgba(255, 56, 184, 0.24)),
    rgba(5, 5, 5, 0.78);
  backdrop-filter: blur(14px) saturate(1.2);
}

.lightbox img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  background: var(--ink);
}

.lightbox p {
  margin: 0;
  padding: 0.9rem 1rem 1.05rem;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 1.65rem;
  line-height: 1;
  text-transform: uppercase;
}

.lightbox-close {
  position: absolute;
  right: 0.7rem;
  top: 0.7rem;
  z-index: 2;
  min-height: 2.35rem;
  padding: 0.55rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.68);
  color: var(--ink);
  background: var(--acid);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

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

@keyframes cover-shine {
  0%,
  34% {
    transform: translateX(-58%) rotate(8deg);
  }

  74%,
  100% {
    transform: translateX(58%) rotate(8deg);
  }
}

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

@supports (animation-timeline: view()) {
  .winner {
    animation: runway-rise both ease;
    animation-timeline: view();
    animation-range: entry 10% cover 34%;
  }

  @keyframes runway-rise {
    from {
      transform: translateY(4rem) rotate(1deg);
    }

    to {
      transform: translateY(0) rotate(0deg);
    }
  }
}

@media (max-width: 1050px) {
  .cover-grid,
  .manifesto,
  .finale {
    grid-template-columns: 1fr;
  }

  .cover-story,
  .cover-copy {
    grid-column: 1;
    grid-row: auto;
  }

  .cover-story {
    justify-self: center;
    width: min(100%, 34rem);
    margin-top: 0;
  }

  .cover-copy {
    padding-bottom: 0;
  }

  .runway-heading,
  .market-heading {
    grid-template-columns: 1fr;
  }

  .winner {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  }

  .market-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .market-card:first-child {
    grid-column: span 2;
  }

  .seal {
    justify-self: start;
  }
}

@media (max-width: 680px) {
  body::after {
    display: none;
  }

  .cover {
    padding: 3.4rem 1rem 1rem;
  }

  .cover-grid {
    min-height: auto;
    gap: 1rem;
  }

  .ticker {
    height: 2rem;
    font-size: 0.64rem;
  }

  .masthead {
    padding-top: 0.4rem;
  }

  .masthead h1 {
    font-size: clamp(3.1rem, 15.3vw, 4.4rem);
  }

  .cover-story {
    width: min(100%, 23.5rem);
    justify-self: stretch;
  }

  .cover::before,
  .cover::after {
    inset: 3rem 0.5rem 0.5rem;
  }

  .cover-frame {
    box-shadow:
      10px 10px 0 rgba(0, 60, 255, 0.24),
      -8px -8px 0 rgba(206, 255, 34, 0.42);
  }

  .cover-ribbon {
    grid-template-columns: 1fr;
  }

  .cover-ribbon span + span {
    border-left: 0;
    border-top: 1px solid rgba(5, 5, 5, 0.3);
  }

  .manifesto {
    min-height: auto;
    padding: 4rem 0 3.2rem;
  }

  .manifesto h2,
  .runway h2,
  .finale h2 {
    font-size: clamp(2.35rem, 12vw, 4rem);
  }

  .runway {
    padding-bottom: 3.5rem;
  }

  .runway-heading {
    display: grid;
  }

  .winner-stack {
    grid-template-columns: 1fr;
  }

  .winner {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .winner:nth-child(even) .winner-media {
    order: 0;
  }

  .winner-media {
    aspect-ratio: 1;
  }

  .winner-copy {
    min-height: 0;
    border-left: 0;
    border-top: 1px solid rgba(5, 5, 5, 0.82);
    padding: 1rem;
  }

  .winner:nth-child(even) .winner-copy {
    border-right: 0;
  }

  .winner-copy h3 {
    font-size: clamp(2rem, 10vw, 3.5rem);
  }

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

  .market-card,
  .market-card:first-child {
    grid-column: auto;
  }

  .market-card {
    grid-template-columns: 5.8rem minmax(0, 1fr);
    min-height: 11rem;
  }

  .market-card img {
    min-height: 8.5rem;
  }

  .finale {
    min-height: auto;
    padding-bottom: 4rem;
  }

  .seal {
    width: min(100%, 15rem);
  }
}

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