/* $007 / SPY — EDITABLE STYLES
   Colors: change the variables in :root below.
   Hero: search for .hero, .hero h1, or .hero-art.
   Posters: search for .posters and .poster-image.
   Phone/tablet rules: search for @media.
   This is ordinary CSS. No Tailwind or build step is required.
*/
/* Browser defaults previously supplied by the website framework. */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
}
body,
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
button,
input {
  font: inherit;
}
button {
  border-radius: 0;
}
img,
svg {
  vertical-align: middle;
}
.icon {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icon-library {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
/* BRAND COLORS */
:root {
  --background: #080908;
  --foreground: #f5f6ee;
  --primary: #ccff00;
  --primary-foreground: #080908;
  --muted: #151a11;
  --muted-foreground: #a2aa98;
  --accent: #222a18;
  --accent-foreground: #ccff00;
  --popover: #0d100b;
  --popover-foreground: #f5f6ee;
  --border: #303729;
  --ring: #ccff00;
  --acid: #ccff00;
  --ink: #080908;
  --paper: #f5f6ee;
  --line: #2b3224;
  --radius: 0;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 30px;
}
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
}
button,
a {
  touch-action: manipulation;
}
img {
  display: block;
  max-width: 100%;
}
button {
  cursor: pointer;
}
svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  stroke-width: 1.7;
}
::selection {
  background: var(--acid);
  color: var(--ink);
}
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--acid);
  outline-offset: 5px;
}
.wrap {
  width: min(1320px, calc(100% - 112px));
  margin-inline: auto;
}
.mono {
  font-family: "Courier New", monospace;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 12px;
  font-weight: 700;
}
.acid {
  color: var(--acid);
}
.skip {
  position: fixed;
  top: -100px;
  left: 20px;
  z-index: 100;
  background: var(--acid);
  color: var(--ink);
  padding: 16px;
}
.skip:focus {
  top: 12px;
}
.topbar {
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 2;
  background: var(--ink);
}
.nav {
  min-height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 20px;
}
.brand img {
  width: 60px;
  height: 60px;
}
.brand-sub {
  border-left: 1px solid #3b4133;
  padding-left: 20px;
  font:
    12px/1.6 "Courier New",
    monospace;
  letter-spacing: 0.04em;
  color: #a2aa98;
}
.brand-sub b {
  color: var(--paper);
}
.navlinks {
  display: flex;
  align-items: center;
  gap: 36px;
  font-size: 14px;
}
.navlinks > a:hover {
  color: var(--acid);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 56px;
  padding: 17px 24px;
  background: var(--acid);
  color: var(--ink);
  border: 1px solid var(--acid);
  font-size: 14px;
  font-weight: 800;
  transition:
    transform 0.2s,
    background 0.2s,
    border-color 0.2s;
}
.button:hover {
  background: #dcff59;
  border-color: #dcff59;
  color: var(--ink) !important;
  transform: translateY(-2px);
}
.button.small {
  min-height: 45px;
  padding: 12px 18px;
}
.button.outline {
  background: transparent;
  border-color: #4d5540;
  color: var(--paper);
}
.button.outline:hover {
  background: #1b2311;
  color: var(--acid) !important;
  border-color: var(--acid);
}
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 670px;
}
.hero-art {
  position: absolute;
  z-index: -3;
  left: 29%;
  top: 0;
  width: 77%;
  height: 100%;
}
.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-fade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, var(--ink) 18%, #080908f5 28%, #08090860 48%, transparent 66%),
    linear-gradient(0deg, var(--ink), transparent 22%);
}
.hero-inner {
  min-height: 670px;
  display: flex;
  align-items: center;
  position: relative;
}
.hero-copy {
  width: 60%;
  padding-block: 64px 78px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  color: #c0c8b4;
  margin: 0 0 27px;
}
.file-tag {
  border: 1px solid #526133;
  padding: 7px 9px;
  color: var(--acid);
}
.hero h1 {
  font-size: clamp(58px, 6.15vw, 94px);
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.065em;
  line-height: 0.97;
  margin: 0 0 28px;
}
.hero h1 span {
  display: block;
}
.hero-description {
  font-size: 16px;
  line-height: 1.7;
  color: #b7beac;
  margin: 0 0 30px;
}
.hero-description strong {
  font-weight: 400;
  color: var(--paper);
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #9ea98c;
  margin: 27px 0 0;
}
.hero-meta svg {
  width: 14px;
  height: 14px;
  color: var(--acid);
}
.hero-index {
  position: absolute;
  right: 0;
  bottom: 26px;
  color: #a2ad93;
  display: flex;
  align-items: center;
  gap: 13px;
}
.hero-index:before {
  content: "";
  height: 1px;
  width: 45px;
  background: var(--acid);
}
.signal-strip {
  background: var(--acid);
  color: var(--ink);
}
.signal-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  padding-block: 19px;
}
.signal-inner strong {
  font-size: 27px;
  letter-spacing: -0.06em;
  font-style: italic;
  font-weight: 900;
}
.signal-inner a {
  display: flex;
  align-items: center;
  gap: 16px;
}
.archive {
  padding-block: 88px;
}
.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #acb69e;
  margin: 0 0 25px;
}
.section-label > span {
  height: 1px;
  width: 32px;
  background: #667744;
}
.section-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 35px;
}
h2 {
  font-size: clamp(42px, 4.6vw, 70px);
  letter-spacing: -0.06em;
  font-style: italic;
  font-weight: 900;
  line-height: 0.97;
  margin: 0;
}
h3 {
  margin: 0;
}
.section-top > p {
  color: #a2aa98;
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}
.posters {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}
.poster {
  min-width: 0;
}
.poster-image {
  aspect-ratio: 2/3;
  position: relative;
  overflow: hidden;
  background: #13170f;
  border: 1px solid #353e2b;
}
.poster-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.35s;
}
.poster-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px solid var(--line);
  padding-block: 17px;
}
.poster-bottom p {
  color: #a0ab91;
  margin: 0 0 7px;
}
.poster-bottom h3 {
  font-size: 16px;
  line-height: 1.35;
}
.poster-bottom svg {
  color: var(--acid);
}
.access {
  padding-block: 70px;
  background: #0d100b;
  border-block: 1px solid var(--line);
}
.access h2 {
  margin-bottom: 24px;
}
@media (pointer: fine) {
  html,
  body,
  body * {
    cursor:
      url("./assets/cursor/cursor.png") 20 20,
      crosshair !important;
  }
}
@media (min-width: 1700px) {
  .hero-art {
    left: 32%;
    width: 66%;
  }
}
@media (max-width: 1100px) {
  .wrap {
    width: calc(100% - 64px);
  }
  .navlinks {
    gap: 24px;
  }
  .hero-copy {
    width: 65%;
  }
  .hero h1 {
    font-size: 7.2vw;
  }
  .hero-art {
    left: 23%;
    width: 86%;
  }
}
@media (max-width: 760px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .nav {
    min-height: 80px;
    gap: 10px;
  }
  .brand {
    gap: 12px;
  }
  .brand img {
    width: 46px;
    height: 46px;
  }
  .brand-sub {
    font-size: 10px;
    padding-left: 12px;
  }
  .navlinks > a:not(.button) {
    display: none;
  }
  .navlinks .button {
    font-size: 13px;
    padding: 12px;
    gap: 10px;
  }
  .hero,
  .hero-inner {
    min-height: 0;
  }
  .hero-art {
    left: -13%;
    width: 126%;
    height: 360px;
  }
  .hero-fade {
    background: linear-gradient(0deg, var(--ink) 0%, var(--ink) 49%, transparent 76%);
  }
  .hero-copy {
    width: 100%;
    padding: 300px 0 44px;
  }
  .hero h1 {
    font-size: clamp(52px, 10.5vw, 78px);
    letter-spacing: -0.055em;
  }
  .hero-index {
    display: none;
  }
  .eyebrow {
    font-size: 12px;
    gap: 10px;
    margin-bottom: 23px;
  }
  .hero-description {
    font-size: 16px;
  }
  .hero-actions .button {
    padding: 16px 18px;
    gap: 14px;
  }
  .signal-inner {
    padding-block: 16px;
  }
  .signal-inner > span {
    display: none;
  }
  .signal-inner strong {
    font-size: 25px;
  }
  .archive {
    padding-block: 55px;
  }
  .section-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }
  .section-top h2 {
    font-size: 48px;
  }
  .section-top > p {
    font-size: 16px;
  }
  .posters {
    gap: 22px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .poster-bottom h3 {
    font-size: 14px;
  }
  .poster-bottom p {
    font-size: 12px;
  }
  .poster-bottom > svg {
    width: 16px;
  }
  .access {
    padding-block: 50px;
  }
}
@media (max-width: 460px) {
  .brand-sub {
    display: none;
  }
  .hero-art {
    height: 310px;
  }
  .hero-copy {
    padding-top: 262px;
  }
  .hero-actions {
    gap: 10px;
  }
  .hero-actions .button {
    font-size: 13px;
    gap: 10px;
    padding: 15px 13px;
  }
  .posters {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .hero h1 {
    font-size: 12vw;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
}
[hidden] {
  display: none !important;
}
.poster-open {
  width: 100%;
  padding: 0;
  text-align: left;
  background: none;
  border: 0;
  display: block;
}
.poster-open:hover .poster-image {
  border-color: var(--acid);
}
.poster-open:hover img {
  transform: scale(1.025);
}
.open-stamp {
  position: absolute;
  top: 14px;
  right: 14px;
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--acid);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  padding: 12px;
  opacity: 0;
  transform: translateY(-6px);
  transition: 0.2s;
}
.poster-open:hover .open-stamp,
.poster-open:focus-visible .open-stamp {
  opacity: 1;
  transform: none;
}
.poster-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  font-size: 14px;
  color: #a6b296;
}
.poster-actions a {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 32px;
}
.poster-actions svg {
  width: 15px;
  height: 15px;
}
.poster-actions a:hover {
  color: var(--acid);
}
.more-posters {
  margin-top: 40px;
}
.archive-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 0 0;
  gap: 20px;
}
.archive-bottom > p {
  color: #9aa78a;
  margin: 0;
}
.text-button {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 10px 0;
  border: 0;
  border-bottom: 1px solid #576843;
  background: none;
  font-size: 14px;
  font-weight: 700;
}
.text-button:hover {
  color: var(--acid);
  border-color: var(--acid);
}
.bonus-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding-top: 43px;
  margin-top: 42px;
}
.bonus-heading .section-label {
  margin: 0;
}
.bonus-heading > p:last-child {
  color: #a2aa98;
  font-size: 14px;
  margin: 0;
}
.bonus-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 1.25fr;
  gap: 26px;
  margin-top: 24px;
}
.bonus-poster .poster-image {
  aspect-ratio: 4/3;
}
.bonus-poster .poster-image img {
  object-fit: contain;
}
.share-note {
  display: flex;
  align-items: center;
  gap: 22px;
  border: 1px solid #354529;
  background: #10160c;
  padding: 25px;
  margin-top: 40px;
}
.share-note > svg {
  color: var(--acid);
  width: 27px;
  height: 27px;
}
.share-note p {
  font-size: 14px;
  line-height: 1.75;
  color: #a6b198;
  margin: 0;
  flex: 1;
}
.share-note strong {
  color: var(--paper);
}
.share-note > a {
  font-size: 14px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--acid);
}
.market-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 26px;
  align-items: stretch;
}
.link-panel {
  border: 1px solid #38452a;
  background: #11170d;
  padding: 28px;
  min-width: 0;
}
.panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
  color: #b5c1a5;
}
.panel-head p {
  margin: 0;
}
.panel-head svg {
  color: var(--acid);
}
.network-row {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  margin-bottom: 21px;
}
.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--acid);
}
.market-badge {
  font-size: 12px;
  color: #a2b38b;
  border: 1px solid #3a482d;
  padding: 5px 8px;
  margin-left: auto;
}
.contract-row {
  display: flex;
  align-items: center;
  border: 1px solid #3b472d;
  background: #090d06;
}
.contract-text {
  min-width: 0;
  padding: 16px;
}
.contract-label {
  display: block;
  color: #a1b089;
  margin-bottom: 9px;
  font-size: 12px;
}
.contract-text code {
  font-family: "Courier New", monospace;
  font-size: 14px;
  line-height: 1.7;
  overflow-wrap: anywhere;
  user-select: all;
}
.copy-button {
  padding: 18px;
  border: 0;
  border-left: 1px solid #3b472d;
  align-self: stretch;
  background: none;
  color: var(--acid);
  flex-shrink: 0;
}
.copy-button:hover {
  background: #212e15;
}
.copy-status {
  font-size: 12px;
  min-height: 18px;
  color: var(--acid);
  margin: 7px 0 11px;
}
.trade-button,
.follow-button {
  width: 100%;
  justify-content: space-between;
}
.market-help {
  font-size: 14px;
  line-height: 1.65;
  color: #a6b398;
  margin: 13px 0 24px;
}
.buy-details {
  display: grid;
  gap: 16px;
  margin-bottom: 25px;
}
.buy-details > div {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.buy-details span {
  font:
    12px/1.8 "Courier New",
    monospace;
  color: var(--acid);
}
.buy-details p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  color: #b4bfaa;
}
.chart-panel {
  border: 1px solid #38452a;
  display: flex;
  flex-direction: column;
  background: #080b06;
  min-width: 0;
}
.chart-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 21px 24px;
  border-bottom: 1px solid #303d25;
}
.chart-heading .mono {
  color: #97a784;
}
.chart-heading h3 {
  font-size: 25px;
  font-style: italic;
  margin: 8px 0 0;
  font-weight: 800;
}
.chart-heading h3 span {
  color: var(--acid);
}
.chart-heading > a {
  padding: 12px;
  border: 1px solid #3b492d;
  color: #b5c4a3;
}
.chart-stage {
  position: relative;
  min-height: 445px;
  flex: 1;
}
.chart-stage iframe {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 445px;
  border: 0;
  z-index: 1;
}
.chart-loading {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: #a2b68a;
  font-size: 14px;
}
.chart-loading svg {
  color: var(--acid);
  width: 30px;
  height: 30px;
}
.chart-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  border-top: 1px solid var(--line);
  color: #9daf8b;
  font-size: 12px;
}
.chart-footer a {
  display: flex;
  align-items: center;
  gap: 7px;
}
.chart-footer svg {
  width: 16px;
  height: 16px;
}
.community {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 70px;
  padding-block: 80px;
}
.community > img {
  width: 100%;
  height: auto;
  border: 1px solid #3a472b;
}
.community h2 {
  font-size: clamp(42px, 4vw, 62px);
}
.community > div > p:not(.section-label) {
  font-size: 16px;
  line-height: 1.7;
  color: #a5b198;
  margin: 22px 0;
}
.footer {
  padding-block: 30px;
  border-top: 1px solid var(--line);
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.footer-brand img {
  width: 46px;
  height: 46px;
}
.footer-brand > span {
  line-height: 1.8;
}
.footer-brand > span > span {
  color: #93a47f;
  font-size: 12px;
}
.footer-legal {
  font-size: 12px;
  line-height: 1.9;
  color: #95a08a;
  max-width: 600px;
  margin: 0;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding-top: 23px;
  margin-top: 27px;
  color: #97a58a;
}
.footer-bottom a {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-bottom a:hover {
  color: var(--acid);
}
.art-dialog {
  width: min(1080px, calc(100vw - 40px)) !important;
  max-width: 1080px !important;
  max-height: calc(100dvh - 36px);
  overflow: auto;
  border: 1px solid #465c31;
  border-radius: 0 !important;
  padding: 0 !important;
  gap: 0 !important;
  background: #0b0f08 !important;
  color: var(--paper);
  box-shadow: 0 30px 100px #000c;
}
.lightbox-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  padding: 14px 22px;
  border-bottom: 1px solid var(--line);
}
.lightbox-bar > span {
  color: #aebda0;
}
.icon-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid #455a31;
  background: none;
  flex-shrink: 0;
}
.icon-button:hover {
  border-color: var(--acid);
  color: var(--acid);
}
.lightbox-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  height: min(62dvh, 720px);
  background: #020301;
  touch-action: pan-y;
}
.lightbox-stage img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.lightbox-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
}
.art-title {
  font-size: 20px !important;
  line-height: 1.3 !important;
  font-weight: 700 !important;
}
.art-description {
  margin: 7px 0 0;
  font-size: 12px !important;
  color: #9fad90 !important;
}
.lightbox-controls {
  display: flex;
  gap: 10px;
}
.lightbox-actions {
  display: flex;
  gap: 12px;
  padding: 0 24px;
  flex-wrap: wrap;
}
.lightbox-actions .button {
  min-height: 46px;
  font-size: 14px;
  padding: 13px 17px;
  gap: 10px;
}
.lightbox-actions button:disabled {
  opacity: 0.6;
}
.share-status {
  font-size: 12px;
  line-height: 1.6;
  color: #a8b99a;
  padding: 0 24px;
  margin: 14px 0 20px;
  min-height: 19px;
}
@media (hover: none) {
  .open-stamp {
    opacity: 1;
    transform: none;
  }
  .open-stamp > span {
    display: none;
  }
}
@media (max-width: 1100px) {
  .market-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  }
  .link-panel {
    padding: 22px;
  }
  .community {
    gap: 40px;
  }
  .poster-actions {
    font-size: 13px;
  }
  .bonus-grid {
    gap: 20px;
  }
  .section-label {
    flex-wrap: wrap;
  }
}
@media (max-width: 900px) {
  .market-grid {
    grid-template-columns: 1fr;
  }
  .chart-stage,
  .chart-stage iframe {
    min-height: 470px;
  }
  .bonus-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .poster-actions {
    flex-wrap: wrap;
  }
  .share-note {
    flex-wrap: wrap;
  }
  .share-note > a {
    margin-left: 49px;
  }
  .footer-top {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-legal {
    max-width: none;
  }
}
@media (max-width: 760px) {
  .bonus-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }
  .bonus-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .bonus-poster .poster-image {
    aspect-ratio: 16/10;
  }
  .community {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-block: 55px;
  }
  .community > img {
    max-width: 600px;
  }
  .community .section-label {
    margin-bottom: 20px;
  }
  .archive-bottom {
    align-items: flex-start;
  }
  .archive-bottom p {
    font-size: 12px;
    line-height: 1.7;
    max-width: 135px;
  }
  .text-button {
    font-size: 14px;
    padding-top: 0;
    gap: 12px;
    text-align: left;
  }
  .share-note {
    padding: 20px;
    gap: 15px;
  }
  .share-note > svg {
    display: none;
  }
  .share-note p {
    flex-basis: 100%;
  }
  .share-note > a {
    margin-left: 0;
  }
  .footer-bottom {
    font-size: 12px;
    align-items: flex-start;
  }
  .footer-bottom > span {
    max-width: 190px;
    line-height: 1.6;
  }
  .footer-bottom a {
    white-space: nowrap;
  }
  .art-dialog {
    width: calc(100vw - 20px) !important;
    max-height: calc(100dvh - 20px);
  }
  .lightbox-bar {
    padding: 10px 14px;
  }
  .lightbox-bar > span {
    font-size: 12px;
    max-width: 230px;
    line-height: 1.6;
  }
  .lightbox-stage {
    height: 48dvh;
  }
  .lightbox-foot {
    padding: 16px;
  }
  .art-title {
    font-size: 17px !important;
  }
  .art-description {
    line-height: 1.6;
  }
  .lightbox-actions {
    padding: 0 16px;
    gap: 8px;
  }
  .lightbox-actions .button {
    font-size: 12px;
    padding: 12px;
    gap: 8px;
  }
  .share-status {
    padding: 0 16px;
  }
  .lightbox-controls {
    gap: 7px;
  }
  .chart-footer {
    flex-wrap: wrap;
  }
  .access .section-top h2 {
    font-size: 48px;
  }
  .copy-button {
    padding: 14px;
  }
  .network-row {
    flex-wrap: wrap;
  }
  .market-badge {
    margin-left: 0;
  }
}

/* NATIVE HTML POSTER VIEWER */
body.modal-open {
  overflow: hidden;
}
.art-dialog {
  position: fixed;
  inset: 0;
  margin: auto;
  overscroll-behavior: contain;
}
.art-dialog:not([open]) {
  display: none;
}
.art-dialog::backdrop {
  background: #000e;
  backdrop-filter: blur(8px);
}
/* Keep touch targets comfortably sized. */
@media (pointer: coarse) {
  .poster-actions a,
  .text-button {
    min-height: 44px;
  }
}
/* Extra-small phones and enlarged text. */
@media (max-width: 360px) {
  .wrap {
    width: calc(100% - 32px);
  }
  .hero-actions .button {
    flex: 1 1 100%;
  }
  .lightbox-foot {
    flex-wrap: wrap;
  }
  .lightbox-controls {
    margin-left: auto;
  }
  .lightbox-bar > span {
    max-width: 185px;
  }
  .footer-bottom {
    flex-wrap: wrap;
  }
}

/* HERO LINKS, GAMES/OTHER ARTWORK, AND SOUNDTRACK */
.hero-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 460px;
}
.hero-actions .button {
  min-width: 0;
  min-height: 56px;
  justify-content: space-between;
  padding: 14px 16px;
  gap: 10px;
  line-height: 1.4;
}
.bonus-grid {
  display: block;
  columns: 3;
  column-gap: 26px;
}
.bonus-poster {
  display: inline-block;
  width: 100%;
  break-inside: avoid;
  margin-bottom: 30px;
}
.bonus-poster .poster-image {
  aspect-ratio: auto;
}
.bonus-poster .poster-image img {
  width: 100%;
  height: auto;
}
.music-control {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 11px 16px;
  background: #0b1008ee;
  border: 1px solid #5b713c;
  color: var(--paper);
  font-size: 14px;
  box-shadow: 0 5px 20px #0005;
}
.music-control i {
  color: var(--acid);
  font-size: 22px;
  line-height: 1;
  font-style: normal;
}
.music-control:hover,
.music-control[data-playing="true"] {
  border-color: var(--acid);
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.footer {
  padding-bottom: 84px;
}
@media (max-width: 900px) {
  .bonus-grid {
    columns: 2;
  }
}
@media (max-width: 540px) {
  .bonus-grid {
    columns: 1;
  }
  .hero-actions .button {
    padding: 13px 12px;
    font-size: 13px;
  }
  .music-control {
    right: 12px;
    bottom: 12px;
  }
}
@media (max-width: 360px) {
  .hero-actions {
    grid-template-columns: 1fr;
  }
}

/* FULLER HERO FRAMING + CLICK-TO-COPY CONTRACT TAPE */
.hero-art {
  left: 15%;
  width: 85%;
  height: 100%;
}
.hero-art img {
  object-fit: contain;
  object-position: right top;
}
.hero-fade {
  background:
    linear-gradient(90deg, var(--ink) 10%, #080908f0 20%, #08090870 35%, transparent 52%),
    linear-gradient(0deg, var(--ink), transparent 12%);
}
.contract-ribbon {
  position: relative;
  overflow: hidden;
  background: var(--acid);
  color: var(--ink);
  border-block: 1px solid #0a0e0680;
}
.ribbon-button {
  display: block;
  position: relative;
  width: 100%;
  min-height: 70px;
  padding: 0;
  border: 0;
  overflow: hidden;
  background: transparent;
  color: inherit;
  text-align: left;
}
.ribbon-button:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: -6px;
}
.contract-track {
  display: flex;
  width: max-content;
  animation: contract-tape 42s linear infinite;
}
.contract-segment {
  display: flex;
  flex: 0 0 auto;
  min-width: 100vw;
  align-items: center;
  justify-content: space-around;
}
.contract-repeat {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 40px;
  padding: 23px 22px;
}
.ribbon-address {
  font:
    700 19px/1.25 "Courier New",
    monospace;
  letter-spacing: 0.035em;
  white-space: nowrap;
}
.contract-repeat svg {
  width: 18px;
  height: 18px;
  opacity: 0.75;
}
.ribbon-feedback {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: calc(100% - 24px);
  width: max-content;
  padding: 10px 18px;
  background: var(--ink);
  color: var(--acid);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
  box-shadow: 0 0 0 8px var(--acid);
}
.ribbon-button:focus-visible .contract-track,
.contract-ribbon[data-feedback="true"] .contract-track {
  animation-play-state: paused;
}
@keyframes contract-tape {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (max-width: 760px) {
  .hero-art {
    position: relative;
    left: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 1672 / 941;
  }
  .hero-art img {
    height: auto;
    object-fit: contain;
    object-position: center top;
  }
  .hero-fade {
    bottom: auto;
    height: 56.28vw;
    background: linear-gradient(0deg, var(--ink), transparent 12%);
  }
  .hero-copy {
    padding: 22px 0 44px;
  }
  .ribbon-button {
    min-height: 60px;
  }
  .contract-repeat {
    padding: 20px 18px;
    gap: 30px;
  }
  .ribbon-address {
    font-size: 16px;
    letter-spacing: 0.02em;
  }
}
@media (prefers-reduced-motion: reduce) {
  .contract-track {
    animation: none;
  }
}
