:root {
  --ink: #0c0b0a;
  --ink-soft: #171512;
  --paper: #eee9df;
  --paper-2: #d8d0c1;
  --line-dark: rgba(12,11,10,.22);
  --line-light: rgba(238,233,223,.22);
  --red: #d9351e;
  --amber: #e8a233;
  --muted: #827c73;
  --safe: max(18px, env(safe-area-inset-left));
  --display: Impact, Haettenschweiler, 'Arial Narrow Bold', 'Arial Narrow', sans-serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body { margin: 0; font-family: var(--sans); color: var(--paper); background: var(--ink); overflow-x: hidden; }
img { display: block; width: 100%; }
button, a { font: inherit; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }
::selection { background: var(--red); color: #fff; }
.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 9999; background: #fff; color: #000; padding: .7rem 1rem; }
.skip-link:focus { top: 1rem; }
.page-noise { position: fixed; inset: 0; pointer-events: none; z-index: 1000; opacity: .055; mix-blend-mode: soft-light; background-image: radial-gradient(circle at 20% 30%, #fff 0 1px, transparent 1.2px), radial-gradient(circle at 70% 65%, #fff 0 1px, transparent 1.2px); background-size: 7px 7px, 11px 11px; }

.site-header { position: fixed; left: 0; right: 0; top: 0; height: 72px; z-index: 100; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 0 3vw; border-bottom: 1px solid transparent; transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease; }
.site-header.scrolled { background: rgba(12,11,10,.82); border-color: var(--line-light); backdrop-filter: blur(18px); }
.wordmark { justify-self: start; display: flex; align-items: center; gap: .6rem; font-weight: 900; letter-spacing: -.035em; font-size: .95rem; }
.wordmark-a { width: 25px; height: 25px; border: 1px solid currentColor; display: grid; place-items: center; border-radius: 50%; font-size: .75rem; }
.site-nav { display: flex; gap: 1.5rem; font-size: .69rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.site-nav a { position: relative; opacity: .76; }
.site-nav a::after { content: ''; position: absolute; left: 0; right: 100%; bottom: -.35rem; height: 1px; background: currentColor; transition: right .22s ease; }
.site-nav a:hover::after, .site-nav a:focus-visible::after { right: 0; }
.site-nav a:hover { opacity: 1; }
.header-actions { justify-self: end; display: flex; align-items: center; gap: .8rem; }
.header-social { width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.36); border-radius: 50%; display: grid; place-items: center; font-size: .7rem; font-weight: 900; }
.header-buy { border: 0; background: var(--paper); color: var(--ink); padding: .7rem 1rem; font-size: .68rem; font-weight: 900; letter-spacing: .13em; cursor: pointer; }
.header-buy[disabled], .config-link-button[disabled] { opacity: .42; cursor: not-allowed; }

.hero { min-height: 100svh; position: relative; overflow: hidden; display: flex; align-items: end; background: #15120f; }
.hero-image-wrap { position: absolute; inset: 0; overflow: hidden; }
.hero-image { width: 100%; height: 100%; object-fit: cover; object-position: 70% 35%; filter: saturate(.74) contrast(1.08) brightness(.85); transform: scale(1.035); transition: transform 1.4s cubic-bezier(.2,.7,.2,1); }
body.loaded .hero-image { transform: scale(1); }
.hero-vignette { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,6,5,.95) 0%, rgba(7,6,5,.68) 38%, rgba(7,6,5,.16) 67%, rgba(7,6,5,.48) 100%), linear-gradient(0deg, rgba(7,6,5,.7), transparent 43%); }
.hero-index { position: absolute; top: 95px; right: 3vw; display: flex; flex-direction: column; text-align: right; gap: .28rem; font: 700 .65rem/1 var(--sans); letter-spacing: .13em; color: rgba(255,255,255,.62); }
.hero-copy { position: relative; z-index: 2; width: 100%; padding: 0 3vw 5.5vh; }
.eyebrow, .micro-label { margin: 0 0 1rem; font-size: .72rem; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow { color: var(--amber); }
.hero-title { margin: 0; max-width: 11ch; font-family: var(--display); font-size: clamp(5.3rem, 14.1vw, 14rem); line-height: .72; letter-spacing: -.055em; font-weight: 900; text-transform: uppercase; text-shadow: 0 10px 40px rgba(0,0,0,.25); }
.hero-title span { color: transparent; -webkit-text-stroke: 1.7px var(--paper); text-stroke: 1.7px var(--paper); }
.hero-lower { margin-top: 2.2rem; width: min(720px, 76vw); display: grid; grid-template-columns: auto 1fr; gap: 1rem 2rem; align-items: center; }
.hero-kicker { margin: 0; grid-row: span 2; font-family: var(--display); font-size: clamp(2.2rem, 5vw, 5rem); line-height: .85; color: var(--paper); }
.hero-blurb { margin: 0; max-width: 36ch; color: rgba(255,255,255,.67); font-size: .92rem; }
.hero-cta-row { display: flex; gap: .65rem; flex-wrap: wrap; }
.btn { border: 1px solid rgba(255,255,255,.32); padding: .85rem 1rem; background: transparent; text-transform: uppercase; font-weight: 900; font-size: .66rem; letter-spacing: .11em; cursor: pointer; transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease; }
.btn:hover:not([disabled]), .btn:focus-visible:not([disabled]) { transform: translateY(-2px); }
.btn-primary { border-color: var(--paper); background: var(--paper); color: var(--ink); }
.btn-ghost:hover:not([disabled]) { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.65); }
.contract-pill { grid-column: 2; width: fit-content; max-width: 100%; border: 0; padding: 0; background: none; color: rgba(255,255,255,.78); display: flex; align-items: center; gap: .7rem; cursor: pointer; font-size: .66rem; letter-spacing: .08em; }
.contract-label { color: rgba(255,255,255,.4); }
.contract-value { max-width: min(48vw, 360px); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.copy-icon { width: 25px; height: 25px; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; display: grid; place-items: center; }
.hero-vertical { position: absolute; z-index: 2; right: .55rem; top: 12vh; bottom: 12vh; writing-mode: vertical-rl; text-transform: uppercase; font: 800 .55rem/1 var(--sans); letter-spacing: .24em; opacity: .28; overflow: hidden; }
.scroll-cue { position: absolute; z-index: 4; right: 3vw; bottom: 4vh; display: flex; align-items: center; gap: .7rem; font-size: .57rem; font-weight: 900; letter-spacing: .16em; }
.scroll-cue i { display: block; width: 58px; height: 1px; background: rgba(255,255,255,.5); position: relative; overflow: hidden; }
.scroll-cue i::after { content: ''; position: absolute; inset: 0; background: #fff; transform: translateX(-100%); animation: scan 2.4s ease-in-out infinite; }
@keyframes scan { 0%,20% { transform: translateX(-100%);} 70%,100% { transform: translateX(100%);} }

.section-light { background: var(--paper); color: var(--ink); }
.section-dark { background: var(--ink); color: var(--paper); }
.section-topline { margin: 0 3vw; padding: 1rem 0; border-top: 1px solid currentColor; display: flex; justify-content: space-between; gap: 1rem; font-size: .57rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; opacity: .72; }
.manifesto { padding: 8rem 0 5rem; position: relative; overflow: hidden; }
.manifesto-head { padding: 4vw 3vw 5vw; }
.manifesto-head .micro-label { color: var(--red); }
.manifesto h2, .howto h2, .media-title h2, .lore-title h2 { margin: 0; font-family: var(--display); font-size: clamp(4.3rem, 10vw, 10rem); line-height: .82; letter-spacing: -.045em; text-transform: uppercase; }
.manifesto h2 em, .howto h2 em, .media-title h2 em, .lore-title h2 em, .final-copy h2 em { font-style: normal; color: var(--red); }
.character-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(12,11,10,.18); border-block: 1px solid rgba(12,11,10,.18); }
.character-card { position: relative; background: var(--paper); min-height: 650px; overflow: hidden; outline: 0; }
.character-card figure { margin: 0; height: 100%; min-height: 650px; background: #b9b1a3; overflow: hidden; }
.character-card img { height: 100%; object-fit: cover; object-position: 50% 24%; filter: grayscale(1) contrast(1.06); transform: scale(1.02); transition: filter .45s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.character-card:hover img, .character-card:focus-visible img { filter: grayscale(0) contrast(1.04); transform: scale(1.055); }
.character-meta { position: absolute; left: 0; right: 0; bottom: 0; padding: 1rem 1rem 1.1rem; background: linear-gradient(0deg, rgba(0,0,0,.86), rgba(0,0,0,.05)); color: #fff; transform: translateY(2.2rem); transition: transform .35s ease; }
.character-card:hover .character-meta, .character-card:focus-visible .character-meta { transform: translateY(0); }
.character-meta span { font-size: .6rem; letter-spacing: .16em; opacity: .68; }
.character-meta h3 { margin: .35rem 0 0; font-size: 1rem; letter-spacing: -.01em; }
.character-meta p { margin: .4rem 0 0; font-size: .72rem; opacity: .68; }
.ticker-line { display: flex; width: max-content; gap: 2rem; padding: 1rem 0 0; font-family: var(--display); font-size: 2.8rem; letter-spacing: -.02em; text-transform: uppercase; animation: ticker 22s linear infinite; }
.ticker-line span:nth-child(even) { color: transparent; -webkit-text-stroke: 1px var(--ink); }
@keyframes ticker { to { transform: translateX(-50%); } }

.showcase { padding: 8rem 0 10rem; min-height: 1100px; position: relative; overflow: hidden; }
.showcase-heading { position: relative; z-index: 3; padding: 4vw 3vw; width: min(900px, 72vw); }
.showcase-heading .micro-label { color: var(--amber); }
.showcase-heading h2 { margin: 0; font-family: var(--display); font-size: clamp(4rem, 11vw, 11rem); line-height: .75; letter-spacing: -.055em; }
.showcase-heading h2 em { font-style: normal; color: transparent; -webkit-text-stroke: 1px var(--paper); }
.showcase-heading > p:last-child { margin: 2rem 0 0; width: min(38ch, 90%); color: rgba(255,255,255,.58); line-height: 1.55; }
.album-stage { position: relative; min-height: 700px; margin: -11rem 3vw 0; }
.album-card { position: absolute; width: min(36vw, 520px); cursor: zoom-in; outline: none; transition: transform .45s cubic-bezier(.2,.8,.2,1), z-index .01s; }
.album-card:hover, .album-card:focus-visible { z-index: 8; }
.album-frame { background: #191714; padding: .55rem; box-shadow: 0 35px 80px rgba(0,0,0,.55); }
.album-frame img { aspect-ratio: 1 / .79; object-fit: cover; }
.album-meta { margin-top: .8rem; display: flex; justify-content: space-between; gap: 1rem; font-size: .58rem; letter-spacing: .11em; }
.album-meta span { opacity: .45; }
.album-a { right: 2%; top: 0; transform: rotate(3deg); }
.album-b { left: 15%; top: 260px; transform: rotate(-4deg); width: min(31vw, 460px); }
.album-b .album-frame img { aspect-ratio: 1; }
.album-c { right: 28%; top: 500px; transform: rotate(2deg); width: min(25vw, 380px); }
.album-c .album-frame img { aspect-ratio: 4 / 5; }
.album-a:hover, .album-a:focus-visible { transform: rotate(0) translateY(-12px) scale(1.02); }
.album-b:hover, .album-b:focus-visible { transform: rotate(0) translateY(-12px) scale(1.02); }
.album-c:hover, .album-c:focus-visible { transform: rotate(0) translateY(-12px) scale(1.02); }

.token-section { min-height: 100svh; position: relative; overflow: hidden; background: #0d0b0a; }
.token-bg { position: absolute; inset: 0 0 0 50%; opacity: .35; }
.token-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg,#0d0b0a 0%, rgba(13,11,10,.08) 58%, #0d0b0a 100%), linear-gradient(0deg,#0d0b0a 0%,transparent 30%); }
.token-bg img { height: 100%; object-fit: cover; object-position: 50% 30%; filter: grayscale(.3) contrast(1.1); }
.token-shell { position: relative; z-index: 2; min-height: 100svh; padding: 8rem 0 6rem; }
.token-topline { color: var(--paper); }
.token-heading { padding: 5vw 3vw 1vw; }
.token-heading .micro-label { color: var(--amber); }
.token-heading h2 { margin: 0; font-family: var(--display); font-size: clamp(5.8rem, 16vw, 16rem); line-height: .72; letter-spacing: -.06em; }
.token-note { margin: 1.2rem 0 0; max-width: 46ch; color: rgba(255,255,255,.67); font-size: .92rem; }
.token-grid { margin: 3vw 3vw 0; width: min(880px, 78vw); border-top: 1px solid var(--line-light); }
.token-field { display: grid; grid-template-columns: 150px 1fr; align-items: center; min-height: 86px; border-bottom: 1px solid var(--line-light); }
.token-field > span { font-size: .59rem; letter-spacing: .14em; opacity: .46; }
.token-value { border: 0; background: none; padding: 0; color: var(--paper); display: flex; align-items: center; justify-content: space-between; gap: 1rem; text-align: left; min-width: 0; }
button.token-value { cursor: pointer; }
.token-value b { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: .95rem; font-weight: 600; }
.token-value i { font-style: normal; font-size: .56rem; letter-spacing: .13em; opacity: .55; }
.token-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line-light); margin-top: 1rem; }
.token-link { min-height: 86px; border: 0; background: #151310; color: var(--paper); padding: 1rem; display: flex; justify-content: space-between; align-items: end; cursor: pointer; font-size: .69rem; font-weight: 900; letter-spacing: .12em; text-align: left; }
.token-link:hover:not([disabled]) { background: #211d18; }
.token-link b { font-size: 1.2rem; font-weight: 400; }

.howto { padding: 8rem 0 9rem; }
.howto-intro { padding: 4vw 3vw 5vw; }
.howto-intro .micro-label { color: var(--red); }
.steps { list-style: none; margin: 0; padding: 0 3vw; border-top: 1px solid var(--line-dark); }
.step { min-height: 180px; display: grid; grid-template-columns: 15vw 1fr; align-items: center; border-bottom: 1px solid var(--line-dark); }
.step-no { font-family: var(--display); font-size: clamp(3rem, 6vw, 6rem); color: var(--red); }
.step h3 { margin: 0; font-family: var(--display); font-size: clamp(3.5rem, 7.6vw, 8rem); line-height: .8; }
.step p { margin: .9rem 0 0; max-width: 43ch; color: rgba(12,11,10,.58); line-height: 1.5; }

.media-wall { padding: 8rem 0 10rem; overflow: hidden; }
.media-title { padding: 4vw 3vw 2vw; }
.media-title .micro-label { color: var(--amber); }
.media-title h2 em { color: transparent; -webkit-text-stroke: 1px var(--paper); }
.collage { position: relative; min-height: 1150px; margin: 2rem 3vw 0; }
.media-piece { position: absolute; padding: 0; border: 0; background: none; cursor: zoom-in; box-shadow: 0 25px 75px rgba(0,0,0,.38); transition: transform .45s cubic-bezier(.2,.8,.2,1); }
.media-piece:hover, .media-piece:focus-visible { transform: rotate(0deg) scale(1.025); z-index: 10; outline: 1px solid rgba(255,255,255,.5); outline-offset: 4px; }
.media-piece img { height: 100%; object-fit: cover; }
.piece-1 { left: 0; top: 40px; width: 56%; aspect-ratio: 3 / 1; transform: rotate(-1.2deg); }
.piece-2 { right: 3%; top: 0; width: 29%; aspect-ratio: 1; transform: rotate(2deg); }
.piece-3 { left: 10%; top: 420px; width: 34%; aspect-ratio: 1.27; transform: rotate(2.3deg); }
.piece-4 { left: 48%; top: 360px; width: 22%; aspect-ratio: .62; transform: rotate(-2.6deg); }
.piece-5 { right: 1%; top: 520px; width: 27%; aspect-ratio: 1; transform: rotate(1.5deg); }
.piece-6 { left: 29%; top: 760px; width: 20%; aspect-ratio: .62; transform: rotate(1deg); }

.lore { padding: 8rem 0 10rem; }
.lore-layout { padding: 5vw 3vw 0; display: grid; grid-template-columns: 1fr 1fr; gap: 7vw; align-items: start; }
.lore-title .micro-label { color: var(--red); }
.timeline { border-top: 1px solid var(--line-dark); }
.timeline-row { min-height: 150px; display: grid; grid-template-columns: 150px 1fr; align-items: center; border-bottom: 1px solid var(--line-dark); }
.timeline-row time { font-family: var(--display); font-size: clamp(2.5rem, 5vw, 5rem); }
.timeline-row p { margin: 0; font-size: clamp(1.2rem, 2.6vw, 2.5rem); letter-spacing: -.03em; }

.final-cta { min-height: 88svh; position: relative; overflow: hidden; display: flex; align-items: center; }
.final-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(.65) contrast(1.12) brightness(.72); }
.final-shade { position: absolute; inset: 0; background: radial-gradient(circle at 56% 40%, transparent 0 24%, rgba(0,0,0,.18) 50%, rgba(0,0,0,.78) 100%), linear-gradient(90deg,rgba(0,0,0,.83),rgba(0,0,0,.18) 65%); }
.final-copy { position: relative; z-index: 2; margin-left: 3vw; width: min(900px, 76vw); }
.final-copy .micro-label { color: var(--amber); }
.final-copy h2 { margin: 0; font-family: var(--display); font-size: clamp(4rem, 10vw, 10rem); line-height: .79; letter-spacing: -.05em; }
.final-actions { margin-top: 2rem; display: flex; gap: .65rem; flex-wrap: wrap; }
.footer { background: var(--ink); border-top: 1px solid var(--line-light); padding: 2rem 3vw 3rem; display: grid; grid-template-columns: 1fr 1fr auto; gap: 2rem; align-items: end; }
.footer div { display: flex; flex-direction: column; gap: .2rem; }
.footer strong { font-family: var(--display); font-size: 2rem; letter-spacing: -.03em; }
.footer span, .footer p, .footer a { font-size: .58rem; letter-spacing: .11em; text-transform: uppercase; opacity: .58; }
.footer p { margin: 0; }

.lightbox { width: 100vw; max-width: none; height: 100svh; max-height: none; margin: 0; padding: 0; border: 0; background: rgba(8,7,6,.95); color: #fff; }
.lightbox::backdrop { background: rgba(8,7,6,.95); }
.lightbox[open] { display: grid; place-items: center; }
.lightbox img { max-width: 90vw; max-height: 86svh; width: auto; height: auto; object-fit: contain; box-shadow: 0 40px 120px rgba(0,0,0,.55); }
.lightbox-close { position: fixed; top: 1.2rem; right: 1.2rem; border: 1px solid rgba(255,255,255,.32); color: #fff; background: rgba(0,0,0,.28); padding: .75rem .9rem; font-size: .62rem; letter-spacing: .12em; cursor: pointer; }
.toast { position: fixed; z-index: 999; left: 50%; bottom: 2rem; transform: translate(-50%, 130%); background: var(--paper); color: var(--ink); padding: .8rem 1rem; font-size: .62rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; transition: transform .3s ease; box-shadow: 0 15px 50px rgba(0,0,0,.25); }
.toast.show { transform: translate(-50%, 0); }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.75,.2,1); }
.reveal.in { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto; }
  .site-nav { display: none; }
  .hero-copy { padding-bottom: 8vh; }
  .hero-title { font-size: clamp(5rem, 17vw, 10rem); }
  .hero-lower { width: min(680px, 92vw); }
  .character-grid { grid-template-columns: repeat(2, 1fr); }
  .character-card, .character-card figure { min-height: 580px; }
  .showcase { min-height: 1220px; }
  .album-stage { margin-top: 0; min-height: 900px; }
  .album-card { width: 50vw; }
  .album-a { right: 0; top: 0; }
  .album-b { left: 2%; top: 300px; width: 44vw; }
  .album-c { right: 4%; top: 590px; width: 36vw; }
  .token-bg { inset-left: 35%; }
  .token-grid { width: 92vw; }
  .collage { min-height: 980px; }
  .piece-1 { width: 68%; }
  .piece-2 { width: 32%; }
  .piece-3 { top: 360px; width: 42%; }
  .piece-4 { left: 52%; top: 310px; width: 26%; }
  .piece-5 { top: 510px; width: 32%; }
  .piece-6 { top: 710px; width: 24%; }
  .lore-layout { grid-template-columns: 1fr; }
  .footer { grid-template-columns: 1fr auto; }
  .footer p { grid-column: 1 / -1; grid-row: 2; }
}

@media (max-width: 680px) {
  .site-header { height: 62px; padding-inline: 18px; }
  .wordmark { font-size: .78rem; }
  .wordmark-a { width: 22px; height: 22px; }
  .header-social { display: none; }
  .header-buy { padding: .62rem .78rem; }
  .hero { min-height: 100svh; }
  .hero-image { object-position: 55% 28%; }
  .hero-vignette { background: linear-gradient(0deg, rgba(7,6,5,.94) 0%, rgba(7,6,5,.42) 52%, rgba(7,6,5,.2) 100%), linear-gradient(90deg, rgba(7,6,5,.24), rgba(7,6,5,.05)); }
  .hero-index { top: 78px; right: 18px; }
  .hero-copy { padding: 0 18px 8vh; }
  .eyebrow { font-size: .61rem; margin-bottom: .65rem; }
  .hero-title { font-size: clamp(4.6rem, 22vw, 7.5rem); line-height: .75; }
  .hero-lower { margin-top: 1.4rem; width: 100%; grid-template-columns: 1fr; gap: .8rem; }
  .hero-kicker { grid-row: auto; font-size: 2.4rem; }
  .hero-blurb { font-size: .78rem; }
  .contract-pill { grid-column: 1; }
  .contract-value { max-width: 58vw; }
  .hero-vertical, .scroll-cue { display: none; }
  .section-topline { margin-inline: 18px; font-size: .49rem; }
  .section-topline span:last-child { text-align: right; }
  .manifesto, .showcase, .media-wall, .lore { padding-top: 5rem; }
  .manifesto-head, .showcase-heading, .media-title, .howto-intro, .lore-layout, .token-heading { padding-inline: 18px; }
  .manifesto h2, .howto h2, .media-title h2, .lore-title h2 { font-size: clamp(3.7rem, 17.5vw, 6rem); }
  .character-grid { grid-template-columns: 1fr 1fr; }
  .character-card, .character-card figure { min-height: 410px; }
  .character-meta { padding: .75rem; transform: translateY(0); }
  .character-meta h3 { font-size: .72rem; }
  .character-meta p { display: none; }
  .ticker-line { font-size: 2rem; }
  .showcase { min-height: 1040px; padding-bottom: 5rem; }
  .showcase-heading { width: 100%; }
  .showcase-heading h2 { font-size: clamp(4rem, 18vw, 6.2rem); }
  .album-stage { min-height: 760px; margin-inline: 18px; }
  .album-card { width: 74vw; }
  .album-a { right: 0; top: 0; }
  .album-b { left: 0; top: 270px; width: 64vw; }
  .album-c { right: 0; top: 520px; width: 48vw; }
  .album-meta { font-size: .48rem; }
  .token-shell { padding-top: 5rem; }
  .token-bg { inset: 0; opacity: .22; }
  .token-heading h2 { font-size: clamp(5.2rem, 23vw, 8rem); }
  .token-grid { margin-inline: 18px; width: auto; }
  .token-field { grid-template-columns: 92px 1fr; min-height: 76px; }
  .token-links { grid-template-columns: 1fr 1fr; }
  .token-link { min-height: 72px; font-size: .57rem; }
  .howto { padding-top: 5rem; padding-bottom: 6rem; }
  .steps { padding-inline: 18px; }
  .step { grid-template-columns: 82px 1fr; min-height: 135px; }
  .step h3 { font-size: 3.8rem; }
  .step p { font-size: .75rem; margin-top: .5rem; }
  .collage { margin-inline: 18px; min-height: 1170px; }
  .media-piece { box-shadow: 0 18px 50px rgba(0,0,0,.42); }
  .piece-1 { left: 0; top: 0; width: 100%; aspect-ratio: 3 / 1; }
  .piece-2 { right: 0; top: 205px; width: 58%; }
  .piece-3 { left: 0; top: 425px; width: 70%; }
  .piece-4 { right: 0; left: auto; top: 610px; width: 48%; }
  .piece-5 { left: 0; right: auto; top: 790px; width: 60%; }
  .piece-6 { right: 0; left: auto; top: 930px; width: 42%; }
  .lore-layout { padding-inline: 18px; gap: 3rem; }
  .timeline-row { grid-template-columns: 100px 1fr; min-height: 110px; }
  .final-cta { min-height: 90svh; }
  .final-bg { object-position: 54% center; }
  .final-shade { background: linear-gradient(0deg,rgba(0,0,0,.9),rgba(0,0,0,.15) 68%), linear-gradient(90deg,rgba(0,0,0,.52),transparent); }
  .final-copy { margin: auto 18px 8vh; width: auto; align-self: end; }
  .final-copy h2 { font-size: clamp(3.8rem, 17vw, 6rem); }
  .footer { padding-inline: 18px; grid-template-columns: 1fr auto; gap: 1.2rem; }
  .footer strong { font-size: 1.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

.optional-telegram.is-empty { display: none; }
