/* ────────────────────────────────────────────────────────────
   SQUIZITO · drop page stylesheet (drop.css)
   Loaded ON TOP of style.css · only contains drop-specific rules.
   ──────────────────────────────────────────────────────────── */


/* ─── DROP HERO ──────────────────────────────────────────── */
.drop-hero {
	padding: 56px var(--frame) 80px;
	min-height: 90vh;
	position: relative;
}
.dh-grid {
	display: grid;
	grid-template-columns: 220px 1fr 320px;
	grid-template-rows: auto auto;
	gap: 40px 48px;
	align-items: start;
}
.dh-meta { grid-column: 1; grid-row: 1; padding-top: 6px; }
.dh-meta .mono { line-height: 1.7; color: var(--ink-2); }
.dh-meta-pop { color: var(--ink); font-weight: 700; }
.dh-coords { margin-top: 32px; padding-top: 16px; border-top: var(--rule); }

.dh-title-block { grid-column: 2; grid-row: 1; align-self: center; text-align: center; padding: 32px 0; }
.dh-eyebrow { color: var(--smoke); display: block; margin-bottom: 24px; }
.dh-overline {
	font-family: var(--f-mono);
	font-size: 18px;
	letter-spacing: 1.2em;
	text-transform: uppercase;
	color: var(--ink-2);
	margin-bottom: 16px;
	padding-left: 1.2em;
}
.dh-numeral {
	font-family: var(--f-display);
	font-weight: 900;
	font-size: clamp(120px, 22vw, 320px);
	line-height: 0.82;
	letter-spacing: -0.06em;
	color: var(--ink);
	margin: 0;
	display: flex;
	justify-content: center;
	align-items: baseline;
	gap: 0;
}
.dh-d { display: inline-block; padding: 0 0.02em; }
.dh-d-acid {
	background: var(--ink);
	color: var(--acid);
	padding: 0 0.06em 0.04em;
}
.dh-sep {
	display: inline-block;
	width: 2px;
	background: var(--ink);
	align-self: stretch;
	margin: 0.05em 0.04em;
}
.dh-name {
	font-family: var(--f-display);
	font-weight: 900;
	font-size: clamp(36px, 5vw, 72px);
	letter-spacing: -0.04em;
	text-transform: lowercase;
	color: var(--ink);
	margin-top: 8px;
	line-height: 1;
}
.dh-lede {
	font-family: var(--f-sans);
	font-size: 16px;
	line-height: 1.55;
	color: var(--ink-2);
	max-width: 56ch;
	margin: 24px auto 0;
}

.dh-side { grid-column: 3; grid-row: 1; align-self: center; }
.dh-tile {
	margin: 0;
	border: var(--rule);
	padding: 12px;
	background: var(--paper);
	transform: rotate(-2.4deg);
	box-shadow: -10px 10px 0 var(--ink);
	transition: transform .6s cubic-bezier(.2,.8,.2,1);
}
.dh-tile:hover { transform: rotate(1deg) scale(1.03); }
.dh-tile-art { aspect-ratio: 3 / 4; overflow: hidden; }
.dh-tile-art svg { width: 100%; height: 100%; display: block; }
.dh-tile-tag {
	font-family: var(--f-mono);
	font-size: 7px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}
.dh-tile-num {
	font-family: var(--f-display);
	font-weight: 900;
	font-size: 88px;
	letter-spacing: -0.08em;
}
.dh-tile-sub {
	font-family: var(--f-display);
	font-weight: 700;
	font-size: 9px;
	letter-spacing: 0.18em;
}
.dh-tile-mini {
	font-family: var(--f-mono);
	font-size: 7px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}
.dh-tile figcaption {
	margin-top: 10px;
	font-size: 10px;
	color: var(--ink-2);
	line-height: 1.5;
}

.dh-foot {
	grid-column: 1 / -1;
	grid-row: 2;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: end;
	padding-top: 48px;
	border-top: var(--rule);
	color: var(--ink-2);
}
.dh-foot-mid { text-align: center; font-size: 16px !important; letter-spacing: 0.04em; color: var(--ink); }
.dh-foot-mid strong { font-weight: 900; }
.dh-foot p:last-child { text-align: right; }


/* ─── COUNTDOWN ──────────────────────────────────────────── */
.countdown {
	background: var(--ink);
	color: var(--paper);
	border-top: var(--rule);
	border-bottom: var(--rule);
	padding: 100px var(--frame);
	position: relative;
	overflow: hidden;
}
.countdown::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		repeating-linear-gradient(
			90deg,
			transparent 0 80px,
			rgba(203,242,36,0.04) 80px 81px
		);
	pointer-events: none;
}
.cd-head {
	text-align: center;
	margin-bottom: 56px;
	position: relative;
}
.cd-tag { display: block; color: var(--acid); margin-bottom: 24px; letter-spacing: 0.16em; }
.cd-h {
	font-family: var(--f-display);
	font-weight: 900;
	font-size: clamp(40px, 5vw, 72px);
	line-height: 1;
	letter-spacing: -0.04em;
	text-transform: uppercase;
	color: var(--paper);
}
.cd-grid {
	display: grid;
	grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
	gap: 18px;
	max-width: 1200px;
	margin: 0 auto;
	align-items: center;
	position: relative;
}
.cd-tile {
	background: var(--acid);
	color: var(--ink);
	padding: 36px 12px 22px;
	border-radius: 6px;
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	overflow: hidden;
}
.cd-tile::before {
	content: "";
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 4px;
	background: var(--ink);
}
.cd-num {
	font-family: var(--f-display);
	font-weight: 900;
	font-size: clamp(64px, 10vw, 140px);
	line-height: 0.9;
	letter-spacing: -0.06em;
	color: var(--ink);
	font-variant-numeric: tabular-nums;
}
.cd-label {
	margin-top: 12px;
	color: var(--ink-2);
	font-size: 11px;
	letter-spacing: 0.18em;
}
.cd-colon {
	font-family: var(--f-display);
	font-weight: 900;
	font-size: clamp(48px, 8vw, 96px);
	color: var(--acid);
	line-height: 0.6;
	padding-bottom: 24px;
}
.cd-tile-pulse { animation: cdpulse 1s ease-in-out infinite; }
@keyframes cdpulse {
	0%, 100% { transform: scale(1); }
	50%      { transform: scale(1.02); }
}
.cd-foot {
	display: flex;
	justify-content: space-between;
	margin-top: 48px;
	padding-top: 24px;
	border-top: 1px solid rgba(244,239,230,0.18);
	gap: 24px;
	color: var(--bone);
}
.cd-launched {
	max-width: 720px;
	margin: 48px auto 0;
	text-align: center;
	color: var(--acid);
	font-size: 18px;
	letter-spacing: 0.16em;
}


/* ─── STORYTELLING (long-form drop vision) ───────────────── */
.storytelling {
	padding: 140px var(--frame);
	background: var(--paper);
	border-top: var(--rule);
	border-bottom: var(--rule);
	position: relative;
}
.storytelling::before {
	content: "";
	position: absolute;
	top: 0; left: 50%;
	width: 1px; height: 64px;
	background: var(--ink);
	transform: translateX(-50%);
}
.storytelling::after {
	content: "✦";
	position: absolute;
	top: 56px; left: 50%;
	transform: translateX(-50%);
	font-size: 18px;
	color: var(--ink);
	background: var(--paper);
	padding: 0 8px;
}
.st-grid {
	max-width: 1100px;
	margin: 0 auto;
	display: grid;
	gap: 64px;
}
.st-head { text-align: center; }
.st-eyebrow { display: block; margin-bottom: 24px; color: var(--smoke); }
.st-title {
	font-family: var(--f-display);
	font-weight: 900;
	font-size: clamp(72px, 12vw, 200px);
	line-height: 0.86;
	letter-spacing: -0.05em;
	text-transform: lowercase;
	color: var(--ink);
	margin-bottom: 20px;
}
.st-credit { color: var(--smoke); display: block; }
.st-prose {
	max-width: 640px;
	margin: 0 auto;
	font-family: var(--f-sans);
	font-size: clamp(18px, 1.8vw, 22px);
	line-height: 1.55;
	color: var(--ink);
}
.st-prose p { margin-bottom: 24px; }
.st-prose em {
	font-style: normal;
	font-weight: 700;
	background: var(--acid);
	padding: 0 0.16em;
}
.st-lead {
	font-family: var(--f-display);
	font-weight: 700;
	font-size: clamp(22px, 2.4vw, 32px);
	line-height: 1.25;
	letter-spacing: -0.015em;
	max-width: none;
}
.st-drop {
	font-family: var(--f-display);
	font-weight: 900;
	font-size: 2.4em;
	float: left;
	line-height: 0.8;
	margin: 0.1em 0.1em 0 0;
	color: var(--ink);
	letter-spacing: -0.06em;
}
.st-pull {
	font-family: var(--f-display);
	font-weight: 900;
	font-size: clamp(28px, 3.4vw, 44px);
	line-height: 1.05;
	letter-spacing: -0.03em;
	text-transform: uppercase;
	text-align: center;
	padding: 32px 0;
	border-top: 1px solid var(--ink);
	border-bottom: 1px solid var(--ink);
}
.st-pull .st-hl {
	display: inline-block;
	background: var(--ink);
	color: var(--acid);
	padding: 0 0.16em 0.04em;
}
.st-stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
	padding-top: 32px;
	border-top: var(--rule);
	max-width: 1100px;
	margin: 0 auto;
}

/* ─── DROP STORY (legacy · kept for compatibility) ───────── */
.drop-story { padding: 140px var(--frame); }
.ds-grid {
	max-width: 1300px;
	margin: 0 auto;
	display: grid;
	gap: 56px;
}
.ds-eyebrow { color: var(--smoke); }
.ds-text {
	font-family: var(--f-display);
	font-weight: 800;
	font-size: clamp(28px, 4vw, 56px);
	line-height: 1.06;
	letter-spacing: -0.025em;
	text-transform: uppercase;
	color: var(--ink);
	max-width: 24ch;
}
.ds-text .hl {
	background: var(--ink); color: var(--acid);
	padding: 0 0.16em 0.04em;
	display: inline-block;
}
.ds-text em {
	font-style: normal;
	font-weight: 400;
}
.ds-stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
	padding-top: 32px;
	border-top: var(--rule);
}
.ds-stat { display: flex; flex-direction: column; gap: 8px; }
.ds-stat-n {
	font-family: var(--f-display);
	font-weight: 900;
	font-size: clamp(56px, 6vw, 96px);
	line-height: 0.9;
	letter-spacing: -0.04em;
	color: var(--ink);
}
.ds-stat-l { color: var(--ink-2); max-width: 18ch; line-height: 1.4; }


/* ─── THE FOURTEEN · 2-col full width grid ───────────────── */
.pieces {
	padding: 0;
	background: var(--ink);
	color: var(--paper);
	border-top: var(--rule);
	border-bottom: var(--rule);
}
.pieces-head {
	padding: 80px var(--frame) 56px;
	max-width: 1300px;
	margin: 0 auto;
	text-align: center;
}
.pieces-head .mono { color: var(--bone); display: block; margin-bottom: 16px; }
.pieces-h {
	font-family: var(--f-display);
	font-weight: 900;
	font-size: clamp(56px, 9vw, 144px);
	line-height: 0.9;
	letter-spacing: -0.045em;
	text-transform: lowercase;
	color: var(--paper);
	margin-bottom: 16px;
}
.pieces-h em { font-style: normal; color: var(--acid); }
.pieces-lede { color: var(--bone); font-size: 16px; max-width: 50ch; margin: 0 auto; }

.pieces-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0;
	border-top: 1px solid rgba(244,239,230,0.12);
}
.pieces-grid-three {
	grid-template-columns: repeat(3, 1fr);
}
.pieces-grid-three .piece:nth-child(3n) { border-right: none; }
.pieces-grid-three .piece:nth-child(2n) { border-right: 1px solid rgba(244,239,230,0.12); }
.piece {
	display: grid;
	grid-template-rows: auto auto;
	background: transparent;
	color: var(--paper);
	border-right: 1px solid rgba(244,239,230,0.12);
	border-bottom: 1px solid rgba(244,239,230,0.12);
	transition: background-color .4s ease;
	overflow: hidden;
}
.piece:nth-child(2n) { border-right: none; }
.piece:hover { background: rgba(203,242,36,0.04); }
.piece-final { background: rgba(203,242,36,0.06); }

.piece-img {
	position: relative;
	aspect-ratio: 4 / 5;
	overflow: hidden;
	filter: none !important;
	border: none;
	background-color: var(--paper);
	transition: transform .8s cubic-bezier(.2,.8,.2,1);
}
.piece:hover .piece-img { transform: scale(1.015); }

.piece-meta {
	padding: 32px clamp(20px, 4vw, 56px) 40px;
	display: grid;
	gap: 12px;
	position: relative;
}
.piece-row {
	display: flex;
	justify-content: space-between;
	color: var(--bone);
	font-size: 10px;
	letter-spacing: 0.12em;
}
.piece-name {
	font-family: var(--f-display);
	font-weight: 900;
	font-size: clamp(36px, 4.5vw, 64px);
	line-height: 0.95;
	letter-spacing: -0.035em;
	text-transform: lowercase;
	color: var(--paper);
	margin: 4px 0;
}
.piece-spec { color: var(--bone); font-size: 10px; line-height: 1.6; }
.piece-nft {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 12px;
	background: var(--acid);
	color: var(--ink);
	border-radius: 999px;
	font-size: 10px;
	margin-top: 4px;
	width: fit-content;
}
.nft-dot { font-size: 12px; }
.piece-cta {
	color: var(--acid);
	font-size: 11px;
	letter-spacing: 0.14em;
	margin-top: 12px;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	transition: gap .35s cubic-bezier(.65,0,.35,1);
}
.piece:hover .piece-cta { gap: 12px; }


/* ─── NEW ART TILES (09-14) ──────────────────────────────── */

/* 09 THRESHOLD · doorway / portal */
.art-threshold {
	background: var(--acid);
	overflow: hidden;
	position: relative;
}
.art-threshold svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.art-threshold-word {
	position: absolute;
	bottom: 24px; left: 50%;
	transform: translateX(-50%);
	font-family: var(--f-display);
	font-weight: 900;
	font-size: clamp(28px, 3.4vw, 44px);
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--ink);
	z-index: 2;
}

/* 10 STATIC · TV noise + bars */
.art-static {
	background: var(--ink);
	color: var(--acid);
	overflow: hidden;
	position: relative;
}
.art-static-noise {
	position: absolute; inset: 0;
	background-image:
		repeating-linear-gradient(0deg,
			rgba(244,239,230,0.18) 0 1px,
			transparent 1px 3px
		);
	mix-blend-mode: screen;
	opacity: 0.6;
}
.art-static-bars {
	position: absolute; inset: 12% 8%;
	display: flex; flex-direction: column;
	gap: 14px;
	z-index: 2;
}
.art-static-bars span {
	display: block;
	background: var(--acid);
	height: 8px;
}
.art-static-bars span:nth-child(1) { width: 60%; }
.art-static-bars span:nth-child(2) { width: 88%; transform: translateX(8%); }
.art-static-bars span:nth-child(3) { width: 42%; transform: translateX(30%); }
.art-static-bars span:nth-child(4) { width: 76%; }
.art-static-bars span:nth-child(5) { width: 52%; transform: translateX(20%); }
.art-static-word {
	position: absolute;
	bottom: 28px; right: 28px;
	font-family: var(--f-display);
	font-weight: 900;
	font-size: clamp(32px, 3.8vw, 56px);
	line-height: 1;
	letter-spacing: -0.04em;
	text-transform: uppercase;
	color: var(--paper);
	z-index: 3;
}

/* 11 ANTHEM · massive stacked single word */
.art-anthem {
	background: var(--acid);
	overflow: hidden;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}
.art-anthem-stack {
	display: flex;
	flex-direction: column;
	width: 110%;
	transform: rotate(-2deg);
	z-index: 2;
}
.art-anthem-row {
	font-family: var(--f-display);
	font-weight: 900;
	font-size: clamp(40px, 6vw, 88px);
	line-height: 0.88;
	letter-spacing: -0.06em;
	text-transform: uppercase;
	color: var(--ink);
	text-align: center;
}
.art-anthem-acid {
	background: var(--ink);
	color: var(--acid);
}
.art-anthem-out {
	-webkit-text-stroke: 1.5px var(--ink);
	color: transparent;
}

/* 12 VECTOR · arrow pattern */
.art-vector {
	background: var(--acid);
	overflow: hidden;
	position: relative;
}
.art-vector svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.art-vector-word {
	font-family: var(--f-display);
	font-weight: 900;
	font-size: 36px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

/* 13 CIPHER · redacted document */
.art-cipher {
	background: var(--paper);
	color: var(--ink);
	overflow: hidden;
	position: relative;
	padding: 32px 24px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.art-cipher-doc {
	display: flex;
	flex-direction: column;
	gap: 14px;
	z-index: 2;
	position: relative;
}
.art-cipher-line {
	display: flex;
	gap: 8px;
	align-items: center;
}
.art-cipher-bar {
	display: inline-block;
	height: 16px;
	background: var(--ink);
	border-radius: 2px;
}
.art-cipher-bar.w1 { width: 40px; }
.art-cipher-bar.w2 { width: 90px; }
.art-cipher-bar.w3 { width: 60px; }
.art-cipher-bar.w4 { width: 110px; }
.art-cipher-word {
	font-family: var(--f-display);
	font-weight: 900;
	font-size: clamp(32px, 4vw, 56px);
	line-height: 1;
	letter-spacing: -0.04em;
	text-transform: uppercase;
	color: var(--rosso);
	transform: rotate(-4deg);
	align-self: flex-end;
	background: var(--paper);
	padding: 4px 8px;
	border: 2px solid var(--rosso);
}

/* 14 ORIGIN · radial sun */
.art-origin {
	background: var(--ink);
	overflow: hidden;
	position: relative;
}
.art-origin svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.art-origin-num {
	font-family: var(--f-display);
	font-weight: 900;
	font-size: 32px;
	letter-spacing: -0.06em;
}
.art-origin-sub {
	font-family: var(--f-mono);
	font-size: 9px;
	letter-spacing: 0.12em;
}
.art-origin-word {
	position: absolute;
	bottom: 24px; left: 24px;
	font-family: var(--f-display);
	font-weight: 900;
	font-size: clamp(28px, 3.4vw, 48px);
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--acid);
	z-index: 2;
}


/* ─── NFT SHOWCASE ───────────────────────────────────────── */
.nft-showcase {
	padding: 140px var(--frame);
	background: var(--acid);
	border-top: var(--rule);
	border-bottom: var(--rule);
	position: relative;
	overflow: hidden;
}
.nft-head {
	text-align: center;
	max-width: 900px;
	margin: 0 auto 80px;
}
.nft-eyebrow { color: var(--ink-2); display: block; margin-bottom: 24px; }
.nft-h {
	font-family: var(--f-display);
	font-weight: 900;
	font-size: clamp(48px, 8vw, 120px);
	line-height: 0.92;
	letter-spacing: -0.045em;
	text-transform: lowercase;
	color: var(--ink);
}
.nft-h em { font-style: normal; font-weight: 400; }
.nft-h-acid {
	display: inline-block;
	background: var(--ink);
	color: var(--acid);
	padding: 0 0.18em 0.06em;
}

/* The animated certificate card */
.nft-stage {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto 100px;
	min-height: 460px;
	perspective: 1400px;
}
.nft-card {
	position: relative;
	width: min(380px, 90vw);
	aspect-ratio: 3 / 4;
	transform-style: preserve-3d;
	animation: nftorbit 14s ease-in-out infinite;
	z-index: 2;
}
.nft-card-inner {
	position: absolute;
	inset: 0;
	transform-style: preserve-3d;
	transition: transform .6s cubic-bezier(.2,.8,.2,1);
}
.nft-card:hover .nft-card-inner { transform: rotateY(180deg); }
.nft-card-face {
	position: absolute;
	inset: 0;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	border-radius: 8px;
	overflow: hidden;
	border: 1px solid var(--ink);
	box-shadow: 0 30px 80px rgba(14,13,10,0.25);
}
.nft-card-front {
	background: var(--ink);
	color: var(--paper);
	padding: 24px 22px;
	display: grid;
	grid-template-rows: auto 1fr auto auto;
	gap: 12px;
}
.nft-card-back {
	background: var(--paper);
	color: var(--ink);
	transform: rotateY(180deg);
	padding: 24px 22px;
	display: grid;
	grid-template-rows: auto 1fr auto;
	align-items: center;
	justify-items: center;
	gap: 12px;
}

.nft-card-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 10px;
	border-bottom: 1px solid rgba(244,239,230,0.2);
}
.nft-card-erc { color: var(--acid); }
.nft-card-middle { display: flex; flex-direction: column; gap: 4px; justify-content: center; }
.nft-card-token {
	font-family: var(--f-mono);
	font-size: clamp(28px, 4.4vw, 40px);
	color: var(--acid);
	letter-spacing: 0.06em;
	font-weight: 700;
}
.nft-card-edition { color: var(--bone); }
.nft-card-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px 16px;
	padding: 14px 0;
	border-top: 1px solid rgba(244,239,230,0.2);
	border-bottom: 1px solid rgba(244,239,230,0.2);
}
.nft-card-cell { display: flex; flex-direction: column; gap: 4px; }
.nft-card-l { color: var(--bone); }
.nft-card-v {
	font-family: var(--f-display);
	font-weight: 800;
	font-size: 14px;
	letter-spacing: -0.01em;
}
.nft-card-foot {
	display: flex;
	justify-content: space-between;
	color: var(--bone);
}
.nft-holo {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(115deg,
			transparent 30%,
			rgba(203,242,36,0.18) 45%,
			rgba(244,239,230,0.12) 55%,
			transparent 70%);
	pointer-events: none;
	mix-blend-mode: screen;
	animation: nfthologramshift 3.5s ease-in-out infinite;
}
@keyframes nfthologramshift {
	0%, 100% { transform: translateX(-30%); opacity: 0.6; }
	50%      { transform: translateX(30%);  opacity: 1; }
}
@keyframes nftorbit {
	0%, 100% { transform: rotateY(-8deg) rotateX(2deg) translateY(0); }
	25%      { transform: rotateY(6deg)  rotateX(-2deg) translateY(-6px); }
	50%      { transform: rotateY(10deg) rotateX(2deg) translateY(0); }
	75%      { transform: rotateY(-4deg) rotateX(-2deg) translateY(-4px); }
}

.nft-card-back-stripe {
	position: absolute; top: 28px; left: 0; right: 0;
	height: 22px;
	background: var(--ink);
}
.nft-card-back-qr {
	width: 140px; height: 140px;
	padding: 14px;
	background: var(--paper);
	border: 1px solid var(--ink);
}
.nft-card-back-l { color: var(--smoke); }
.nft-card-back-v {
	text-align: center;
	font-size: 11px;
	color: var(--ink);
	line-height: 1.5;
}

/* Decorative rings + dots floating around the card */
.nft-aux { position: absolute; inset: 0; pointer-events: none; }
.nft-aux-ring {
	position: absolute;
	left: 50%; top: 50%;
	border-radius: 50%;
	border: 1px solid var(--ink);
	transform: translate(-50%, -50%);
	opacity: 0.2;
}
.nft-aux-ring-1 { width: 520px; height: 520px; animation: spin 60s linear infinite; }
.nft-aux-ring-2 { width: 720px; height: 720px; animation: spin 90s linear reverse infinite; opacity: 0.1; }
.nft-aux-dot {
	position: absolute;
	width: 12px; height: 12px;
	background: var(--ink);
	border-radius: 50%;
}
.nft-aux-dot-1 { top: 20%; left: 14%; animation: nftfloat 6s ease-in-out infinite; }
.nft-aux-dot-2 { top: 78%; left: 86%; animation: nftfloat 7s ease-in-out infinite reverse; }
.nft-aux-dot-3 { top: 30%; left: 88%; width: 8px; height: 8px; animation: nftfloat 5s ease-in-out infinite 0.5s; }
@keyframes nftfloat {
	0%, 100% { transform: translate(0, 0); }
	50%      { transform: translate(8px, -12px); }
}

.nft-flow {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 56px;
	max-width: 1500px;
	margin: 0 auto;
}
.nft-step {
	padding-top: 32px;
	border-top: 2px solid var(--ink);
}
.nft-step-num { display: block; color: var(--ink-2); margin-bottom: 32px; }
.nft-step-h {
	font-family: var(--f-display);
	font-weight: 800;
	font-size: clamp(24px, 2.4vw, 32px);
	line-height: 1.1;
	letter-spacing: -0.02em;
	text-transform: uppercase;
	color: var(--ink);
	margin-bottom: 16px;
}
.nft-step-h em { font-style: normal; font-weight: 400; }
.nft-step-p {
	font-size: 15px;
	line-height: 1.55;
	color: var(--ink-2);
	max-width: 36ch;
}


/* ─── VORA VOTE CTA ──────────────────────────────────────── */
.drop-vote {
	padding: 160px var(--frame);
	background: var(--ink);
	color: var(--paper);
	text-align: center;
	position: relative;
	overflow: hidden;
}
.drop-vote::before {
	content: "VOTE · VOTE · VOTE · VOTE · VOTE · VOTE";
	position: absolute;
	bottom: -8px; left: 0; right: 0;
	font-family: var(--f-display);
	font-weight: 900;
	font-size: clamp(60px, 12vw, 200px);
	line-height: 0.85;
	letter-spacing: -0.05em;
	color: var(--acid);
	opacity: 0.06;
	white-space: nowrap;
	pointer-events: none;
}
.dv-inner { max-width: 800px; margin: 0 auto; position: relative; z-index: 2; }
.dv-eyebrow { color: var(--acid); display: block; margin-bottom: 24px; }
.dv-h {
	font-family: var(--f-display);
	font-weight: 900;
	font-size: clamp(72px, 12vw, 200px);
	line-height: 0.86;
	letter-spacing: -0.05em;
	text-transform: lowercase;
	color: var(--paper);
	margin-bottom: 32px;
}
.dv-h em { font-style: normal; }
.dv-h-acid {
	display: inline-block;
	background: var(--acid);
	color: var(--ink);
	padding: 0 0.16em 0.06em;
}
.dv-lede {
	font-size: 17px;
	line-height: 1.55;
	color: var(--bone);
	max-width: 56ch;
	margin: 0 auto 40px;
}
.dv-lede em { font-style: normal; color: var(--acid); font-weight: 700; }
.dv-cta {
	display: inline-flex;
	align-items: center;
	gap: 16px;
	padding: 28px 40px;
	background: var(--acid);
	color: var(--ink);
	border-radius: 999px;
	font-family: var(--f-display);
	font-weight: 900;
	font-size: clamp(16px, 1.6vw, 20px);
	letter-spacing: -0.01em;
	text-transform: uppercase;
	transition: transform .4s cubic-bezier(.2,.8,.2,1), background-color .3s ease;
	box-shadow: 0 0 0 4px var(--ink), 0 0 0 5px var(--acid);
}
.dv-cta:hover { transform: translateY(-4px); background: var(--paper); box-shadow: 0 0 0 4px var(--ink), 0 0 0 5px var(--paper); }
.dv-cta-arrow { font-size: 26px; transition: transform .35s ease; line-height: 1; }
.dv-cta:hover .dv-cta-arrow { transform: translate(6px, -6px); }
.dv-fine { margin-top: 24px; color: var(--bone); }
.dv-fine strong { color: var(--acid); font-weight: 700; }


/* ─── ART · GROUNDSWELL (drop 001 namesake tee) ──────────── */
.art-groundswell {
	background: var(--acid);
	overflow: hidden;
	position: relative;
}
.art-groundswell svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.ag-overline {
	font-family: var(--f-mono);
	font-size: 8px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}
.ag-num {
	font-family: var(--f-display);
	font-weight: 900;
	font-size: 80px;
	letter-spacing: -0.08em;
}
.ag-sub {
	font-family: var(--f-display);
	font-weight: 700;
	font-size: 10px;
	letter-spacing: 0.2em;
}
.art-ground-word {
	position: absolute;
	bottom: 18px; left: 50%;
	transform: translateX(-50%);
	font-family: var(--f-display);
	font-weight: 900;
	font-size: clamp(20px, 2.4vw, 30px);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--ink);
	z-index: 2;
	background: var(--acid);
	padding: 4px 8px;
}


/* ─── ART · CITIZENS (drop 001 founding hoodie) ──────────── */
.art-citizens {
	background: var(--ink);
	overflow: hidden;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}
.art-citizens .art-citizens-stack {
	display: flex;
	flex-direction: column;
	width: 100%;
	padding: 0 8%;
	z-index: 2;
}
.art-citizens .art-anthem-row {
	font-family: var(--f-display);
	font-weight: 900;
	font-size: clamp(28px, 5vw, 64px);
	line-height: 0.92;
	letter-spacing: -0.045em;
	text-transform: uppercase;
	color: var(--paper);
	text-align: center;
}
.art-citizens .art-anthem-acid {
	background: var(--acid);
	color: var(--ink);
}
.art-citizens .art-anthem-out {
	-webkit-text-stroke: 1.5px var(--paper);
	color: transparent;
}


/* ─── FOUNDATION TILE TWEAKS ─────────────────────────────── */
.art-foundation-sub {
	font-family: var(--f-mono);
	font-size: 9px;
	letter-spacing: 0.14em;
}


/* ─── THE NEXT 13 DROPS · editorial list ─────────────────── */
.next-drops-section {
	padding: 140px var(--frame);
	background: var(--paper);
	border-top: var(--rule);
	border-bottom: var(--rule);
	position: relative;
}
.next-drops-section::before {
	content: "";
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 4px;
	background: var(--acid);
}
.nd-head {
	max-width: 1100px;
	margin: 0 auto 64px;
	text-align: center;
}
.nd-head .mono { display: block; color: var(--smoke); margin-bottom: 24px; }
.nd-h {
	font-family: var(--f-display);
	font-weight: 900;
	font-size: clamp(48px, 8vw, 120px);
	line-height: 0.92;
	letter-spacing: -0.045em;
	text-transform: lowercase;
	color: var(--ink);
	margin-bottom: 24px;
}
.nd-h em { font-style: normal; color: var(--acid); background: var(--ink); padding: 0 0.16em 0.04em; display: inline-block; }
.nd-lede {
	font-family: var(--f-sans);
	font-size: 16px;
	line-height: 1.55;
	color: var(--ink-2);
	max-width: 56ch;
	margin: 0 auto;
}

.nd-list {
	max-width: 1500px;
	margin: 0 auto;
	border-top: 1px solid var(--ink);
}
.nd-row {
	display: grid;
	grid-template-columns: 80px 1fr 2fr auto;
	gap: 32px;
	align-items: baseline;
	padding: 32px 16px;
	border-bottom: 1px solid var(--ink);
	transition: background-color .4s ease, transform .4s ease;
	position: relative;
}
.nd-row::before {
	content: "→";
	position: absolute;
	left: -36px;
	top: 50%;
	transform: translateY(-50%);
	font-family: var(--f-display);
	font-size: 24px;
	color: var(--ink);
	opacity: 0;
	transition: opacity .35s ease, left .35s ease;
}
.nd-row:hover {
	background: var(--ink);
	color: var(--paper);
}
.nd-row:hover::before {
	opacity: 1;
	left: -24px;
	color: var(--acid);
}
.nd-row:hover .nd-num,
.nd-row:hover .nd-status { color: var(--acid); }
.nd-row:hover .nd-name { color: var(--paper); }
.nd-row:hover .nd-story { color: var(--bone); }
.nd-row-final {
	background: rgba(203,242,36,0.18);
}
.nd-num {
	color: var(--smoke);
	font-size: 12px;
	letter-spacing: 0.14em;
	transition: color .3s ease;
}
.nd-name {
	font-family: var(--f-display);
	font-weight: 900;
	font-size: clamp(28px, 4vw, 48px);
	line-height: 0.95;
	letter-spacing: -0.04em;
	text-transform: lowercase;
	color: var(--ink);
	transition: color .3s ease;
	margin: 0;
}
.nd-story {
	font-family: var(--f-sans);
	font-style: italic;
	font-weight: 400;
	font-size: clamp(15px, 1.4vw, 18px);
	line-height: 1.4;
	color: var(--ink-2);
	transition: color .3s ease;
	margin: 0;
}
.nd-status {
	color: var(--smoke);
	text-align: right;
	transition: color .3s ease;
}
.nd-foot {
	text-align: center;
	max-width: 700px;
	margin: 48px auto 0;
	color: var(--smoke);
	padding: 16px 20px;
	border: 1px dashed var(--ink);
	border-radius: 4px;
}


/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1100px) {
	.dh-grid {
		grid-template-columns: 1fr 280px;
		gap: 32px;
	}
	.dh-meta { grid-column: 1; grid-row: 1; }
	.dh-title-block { grid-column: 1 / -1; grid-row: 2; }
	.dh-side { grid-column: 2; grid-row: 1; }
	.dh-foot { grid-column: 1 / -1; grid-row: 3; }
	.cd-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
	.cd-colon { display: none; }
	.ds-stats { grid-template-columns: repeat(2, 1fr); }
	.nft-flow { grid-template-columns: 1fr; }
	.pieces-grid { grid-template-columns: 1fr; }
	.pieces-grid-three { grid-template-columns: 1fr; }
	.piece { border-right: none !important; }
	.st-stats { grid-template-columns: repeat(2, 1fr); }
	.nd-row { grid-template-columns: 60px 1fr; gap: 12px; }
	.nd-row > .nd-story { grid-column: 2; }
	.nd-row > .nd-status { grid-column: 2; text-align: left; }
	.nd-row::before { display: none; }
}
@media (max-width: 680px) {
	.drop-hero { padding: 32px var(--frame) 56px; }
	.dh-grid { grid-template-columns: 1fr; }
	.dh-meta, .dh-title-block, .dh-side, .dh-foot { grid-column: 1; }
	.dh-side { transform: scale(.9); transform-origin: left top; }
	.dh-foot { grid-template-columns: 1fr; gap: 16px; }
	.dh-foot p:last-child, .dh-foot-mid { text-align: left; }
	.countdown { padding: 60px var(--frame); }
	.cd-tile { padding: 20px 8px 14px; }
	.cd-foot { flex-direction: column; }
	.drop-story, .nft-showcase, .drop-vote, .storytelling, .next-drops-section { padding: 80px var(--frame); }
	.st-prose { font-size: 16px; }
	.st-drop { font-size: 1.8em; }
	.ds-stats { grid-template-columns: 1fr 1fr; gap: 24px; }
	.pieces-head { padding: 56px var(--frame) 32px; }
	.piece-meta { padding: 24px 20px 32px; }
	.nft-stage { min-height: 380px; margin-bottom: 56px; }
	.nft-aux-ring-1 { width: 380px; height: 380px; }
	.nft-aux-ring-2 { width: 480px; height: 480px; }
	.dv-cta { padding: 22px 28px; }
}
