:root {
  --ink: #151111;
  --paper: #f7f1e8;
  --paper-2: #fffaf1;
  --muted: #6f6761;
  --line: #201a18;
  --pink: #f0449b;
  --teal: #179b92;
  --yellow: #f4c84f;
  --blue: #163f72;
  --logo-blue: #2887fc;
  --white: #fffdf8;
  --shadow: 10px 10px 0 var(--ink);
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(21, 17, 17, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(21, 17, 17, 0.05) 1px, transparent 1px),
    var(--paper);
  background-size: 32px 32px, 32px 32px, auto;
  color: var(--ink);
}

body::selection {
  background: var(--yellow);
  color: var(--ink);
}

.noise-layer {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.06;
  background-image:
    linear-gradient(45deg, var(--ink) 25%, transparent 25%),
    linear-gradient(-45deg, var(--ink) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, var(--ink) 75%),
    linear-gradient(-45deg, transparent 75%, var(--ink) 75%);
  background-size: 6px 6px;
  background-position: 0 0, 0 3px, 3px -3px, -3px 0;
}

.halftone-field {
  display: none;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  min-height: 78px;
  padding: 10px clamp(16px, 4vw, 54px);
  border-bottom: 2px solid var(--ink);
  background: rgba(247, 241, 232, 0.9);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  min-width: 0;
  font-size: 15px;
  font-weight: 950;
  letter-spacing: 0;
}

.brand-mark {
  width: 136px;
  height: 136px;
  flex: 0 0 auto;
  object-fit: contain;
}

.nav-links {
  justify-content: flex-end;
  gap: clamp(12px, 3vw, 34px);
  font-size: 14px;
  font-weight: 900;
}

.nav-links a {
  padding: 9px 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: var(--ink);
}

.nav-links .nav-mint,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--pink);
  color: var(--white);
  font-weight: 950;
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.nav-links .nav-mint:hover,
.button:hover {
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 var(--ink);
  border-color: var(--ink);
}

.button.secondary {
  background: var(--white);
  color: var(--ink);
}

.button.wide {
  width: 100%;
}

.button[aria-disabled="true"] {
  cursor: default;
  opacity: 0.72;
}

.button[aria-disabled="true"]:hover {
  transform: none;
  box-shadow: 5px 5px 0 var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  min-height: calc(100vh - 78px);
  padding: clamp(36px, 6vw, 82px) clamp(18px, 5vw, 72px);
  border-bottom: 2px solid var(--ink);
  background:
    radial-gradient(circle, rgba(240, 68, 155, 0.44) 0 3px, transparent 3.5px),
    var(--paper);
  background-size: 24px 24px, auto;
}

.hero-copy {
  max-width: 880px;
}

.eyebrow,
.section-kicker {
  color: var(--paper) !important;
  font-size: 16px;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1;
  width: fit-content;
  max-width: 100%;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--ink);
  box-shadow: 4px 4px 0 var(--pink);
  margin: 0 0 16px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 900px;
  margin-bottom: 24px;
  font-size: clamp(46px, 7.4vw, 128px);
  line-height: 0.88;
  letter-spacing: 0;
}

.hero-mark {
  display: inline;
  padding: 0.02em 0.08em 0.12em;
  background: var(--yellow);
  color: var(--ink);
  line-height: inherit;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.hero-mark-fit {
  margin: 0 -0.02em;
}

.hero-mark-definition {
  margin: 0 -0.04em;
}

.hero-mark::selection {
  background: var(--pink);
  color: var(--ink);
}

h2 {
  margin-bottom: 0;
  font-size: clamp(38px, 6vw, 88px);
  line-height: 0.92;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0;
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1;
}

.hero-text,
.manifesto-copy p,
.access-copy p,
.world-copy p,
.artist-panel p,
.mint-copy p {
  color: var(--muted);
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.55;
}

.hero-text {
  max-width: 880px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.55;
}

.hero-text span {
  display: block;
  width: fit-content;
  max-width: none;
  margin: 0 0 10px;
  padding: 6px 16px 7px;
  background: rgba(255, 253, 248, 0.85);
  clip-path: polygon(1.5% 0, 99% 0, 98.4% 15%, 100% 31%, 98.8% 50%, 99.6% 73%, 98.2% 100%, 2% 100%, 0.8% 83%, 1.7% 66%, 0% 48%, 1.3% 28%, 0.4% 12%);
  font-family: inherit;
  font-weight: 650;
  white-space: nowrap;
}

.hero-text span:nth-child(2) {
  clip-path: polygon(0.8% 0, 98.6% 0, 100% 18%, 98.5% 39%, 99.5% 62%, 98.8% 100%, 1.3% 100%, 0% 78%, 1.4% 58%, 0.5% 35%, 1.8% 16%);
}

.hero-text span:nth-child(3) {
  clip-path: polygon(1.1% 0, 99.2% 0, 98.7% 23%, 99.8% 46%, 98.9% 68%, 99.5% 100%, 1.8% 100%, 0.6% 82%, 1.2% 61%, 0% 42%, 1.5% 19%);
}

.hero-text span:nth-child(4) {
  clip-path: polygon(1.8% 0, 98.4% 0, 100% 20%, 98.7% 44%, 99.4% 72%, 98.1% 100%, 1.2% 100%, 0% 76%, 1.5% 54%, 0.7% 27%);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.signal-board {
  border: 2px solid var(--ink);
  border-radius: 10px;
  background: var(--ink);
  box-shadow: 10px 10px 0 var(--teal);
  color: var(--paper);
  overflow: hidden;
}

.signal-topline,
.signal-caption {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  color: var(--paper);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.signal-topline span:last-child {
  color: var(--pink);
}

.art-stack {
  position: relative;
  min-height: min(58vw, 610px);
  padding: clamp(18px, 4vw, 34px);
  overflow: hidden;
}

.stack-img {
  position: absolute;
  aspect-ratio: 1;
  border: 2px solid var(--paper);
  border-radius: 8px;
  object-fit: cover;
}

.stack-main {
  left: clamp(18px, 4vw, 34px);
  top: clamp(18px, 4vw, 34px);
  width: calc(100% - clamp(36px, 8vw, 68px));
  height: calc(100% - clamp(36px, 8vw, 68px));
  box-shadow: 10px 10px 0 var(--pink);
}

.stack-one,
.stack-two {
  width: 29%;
  min-width: 120px;
}

.stack-one {
  right: 4%;
  top: 8%;
  transform: rotate(5deg);
}

.stack-two {
  left: 6%;
  bottom: 9%;
  transform: rotate(-6deg);
}

.signal-caption span {
  border: 2px solid rgba(247, 241, 232, 0.42);
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(255, 253, 248, 0.04);
}

.marquee {
  padding: 18px 0;
  border-bottom: 2px solid var(--ink);
  background: var(--yellow);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: drift 42s linear infinite;
}

.marquee-group {
  display: flex;
  flex: 0 0 auto;
  gap: 14px;
  padding-right: 14px;
}

.marquee img {
  width: clamp(116px, 14vw, 190px);
  aspect-ratio: 1;
  border: 2px solid var(--ink);
  border-radius: 8px;
  object-fit: cover;
  background: var(--paper);
}

@keyframes drift {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.manifesto-section,
.access-section,
.world-section,
.artist-section,
.mint-section {
  position: relative;
  overflow: hidden;
  padding: clamp(74px, 10vw, 140px) clamp(18px, 5vw, 72px);
}

.manifesto-section::before,
.access-section::before,
.world-section::before,
.artist-section::before,
.mint-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image: radial-gradient(circle, currentColor 0 3px, transparent 3.5px);
  background-size: 24px 24px;
  mask-image:
    linear-gradient(90deg, #000 0 24%, rgba(0, 0, 0, 0.35) 36%, transparent 48%, transparent 72%, rgba(0, 0, 0, 0.28) 84%, #000 100%);
}

.manifesto-section > *,
.access-section > *,
.world-section > *,
.artist-section > *,
.mint-section > * {
  position: relative;
  z-index: 1;
}

.manifesto-section::before {
  color: var(--pink);
  mask-image:
    radial-gradient(circle at 14% 34%, #000 0 18%, rgba(0, 0, 0, 0.42) 34%, transparent 58%),
    linear-gradient(90deg, #000 0 24%, transparent 44%);
}

.access-section::before {
  color: var(--yellow);
  opacity: 0.14;
}

.world-section::before {
  color: var(--teal);
}

.artist-section::before {
  color: var(--pink);
}

.mint-section::before {
  color: var(--yellow);
  opacity: 0.16;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.9fr);
  gap: clamp(30px, 7vw, 94px);
}

.manifesto-title {
  position: sticky;
  top: 110px;
  align-self: start;
}

.about-logo-float {
  position: relative;
  width: min(52vw, 280px);
  margin-top: clamp(24px, 5vw, 48px);
  padding-bottom: 36px;
  cursor: grab;
  touch-action: none;
  user-select: none;
  transform: translate3d(var(--drag-x, 0px), var(--drag-y, 0px), 0);
  transition: transform 280ms cubic-bezier(0.2, 1.15, 0.3, 1);
}

.about-logo-float.is-dragging {
  cursor: grabbing;
  transition: none;
}

.about-logo-float.is-returning {
  transition: transform 260ms cubic-bezier(0.18, 1.35, 0.35, 1);
}

.about-logo {
  position: relative;
  z-index: 1;
  width: 100%;
  transform-origin: 50% 58%;
  animation: logo-levitate 4.8s ease-in-out infinite;
  pointer-events: none;
}

.about-logo-float.is-dragging .about-logo,
.about-logo-float.is-returning .about-logo {
  animation-play-state: paused;
}

.about-logo-shadow {
  position: absolute;
  left: 9%;
  right: 9%;
  bottom: 10px;
  height: 34px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(21, 17, 17, 0.42) 0 20%, rgba(22, 63, 114, 0.46) 34%, rgba(240, 68, 155, 0.32) 58%, transparent 76%);
  filter: blur(8px);
  transform-origin: 50% 50%;
  animation: logo-floor-shadow 4.8s ease-in-out infinite;
  pointer-events: none;
}

.about-logo-float.is-dragging .about-logo-shadow,
.about-logo-float.is-returning .about-logo-shadow {
  animation-play-state: paused;
}

@keyframes logo-levitate {
  0%,
  100% {
    transform: rotate(-2deg) translate(0, 0);
  }

  35% {
    transform: rotate(2deg) translate(4px, -10px);
  }

  70% {
    transform: rotate(-1deg) translate(-3px, -5px);
  }
}

@keyframes logo-floor-shadow {
  0%,
  100% {
    opacity: 0.82;
    transform: translateX(0) scaleX(0.86);
  }

  35% {
    opacity: 0.58;
    transform: translateX(8px) scaleX(1.05);
  }

  70% {
    opacity: 0.7;
    transform: translateX(-5px) scaleX(0.95);
  }
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--ink);
  box-shadow: 4px 4px 0 var(--teal);
  margin: 0 0 16px;
}

.access-kicker {
  color: var(--paper) !important;
  box-shadow: 4px 4px 0 var(--yellow);
}

.paths-kicker {
  color: var(--paper) !important;
  box-shadow: 4px 4px 0 var(--pink);
}

.artist-kicker {
  color: var(--paper) !important;
  box-shadow: 4px 4px 0 var(--teal);
}

.mint-kicker {
  color: var(--paper) !important;
  box-shadow: 4px 4px 0 var(--pink);
}

.manifesto-copy {
  display: grid;
  gap: 22px;
}

.manifesto-copy p {
  margin-bottom: 0;
}

.callout-line {
  display: grid;
  gap: 10px;
  color: var(--muted) !important;
  font-weight: 650;
}

.callout-line span {
  display: block;
  width: fit-content;
  max-width: none;
  padding: 7px 16px 8px;
  background: rgba(255, 253, 248, 0.85);
  clip-path: polygon(1.5% 0, 99% 0, 98.4% 15%, 100% 31%, 98.8% 50%, 99.6% 73%, 98.2% 100%, 2% 100%, 0.8% 83%, 1.7% 66%, 0% 48%, 1.3% 28%, 0.4% 12%);
  white-space: nowrap;
}

.callout-line span:nth-child(2) {
  clip-path: polygon(0.8% 0, 98.6% 0, 100% 18%, 98.5% 39%, 99.5% 62%, 98.8% 100%, 1.3% 100%, 0% 78%, 1.4% 58%, 0.5% 35%, 1.8% 16%);
}

.callout-line span:nth-child(3) {
  clip-path: polygon(1.1% 0, 99.2% 0, 98.7% 23%, 99.8% 46%, 98.9% 68%, 99.5% 100%, 1.8% 100%, 0.6% 82%, 1.2% 61%, 0% 42%, 1.5% 19%);
}

.callout-line span:nth-child(4) {
  clip-path: polygon(1.8% 0, 98.4% 0, 100% 20%, 98.7% 44%, 99.4% 72%, 98.1% 100%, 1.2% 100%, 0% 76%, 1.5% 54%, 0.7% 27%);
}

.theme-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 2px solid var(--ink);
}

.theme-strip article {
  min-height: 270px;
  padding: clamp(24px, 4vw, 48px);
  border-right: 2px solid var(--ink);
}

.theme-strip article:nth-child(1) {
  background: var(--pink);
  color: var(--white);
}

.theme-strip article:nth-child(2) {
  background: var(--teal);
  color: var(--white);
}

.theme-strip article:nth-child(3) {
  background: var(--paper-2);
}

.theme-strip article:last-child {
  border-right: 0;
}

.theme-strip span {
  display: block;
  margin-bottom: 34px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
  font-weight: 950;
}

.theme-strip h3 {
  margin-bottom: 14px;
}

.theme-strip p {
  max-width: 330px;
  margin-bottom: 0;
  font-size: 17px;
  line-height: 1.5;
}

.access-section {
  background: var(--paper);
  color: var(--ink);
  padding-top: clamp(48px, 7vw, 92px);
  padding-bottom: clamp(54px, 8vw, 104px);
}

.access-copy {
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(360px, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  margin-bottom: clamp(20px, 3.5vw, 38px);
}

.access-copy .section-kicker,
.world-copy .section-kicker,
.artist-panel .section-kicker,
.mint-copy .section-kicker,
.manifesto-title .section-kicker {
  justify-self: start;
  align-self: start;
}

.access-copy p {
  color: var(--muted);
  margin-bottom: 0;
}

.access-copy .access-note {
  max-width: 420px;
  margin-top: clamp(18px, 4vw, 42px);
  font-size: clamp(16px, 1.55vw, 20px);
}

.access-statement {
  max-width: 820px;
  justify-self: end;
}

.access-statement h2 {
  max-width: 760px;
}

.access-statement p {
  max-width: 650px;
  margin-top: 18px;
  font-size: clamp(18px, 1.65vw, 22px);
}

.wallet-checker {
  display: grid;
  gap: 16px;
  margin-bottom: clamp(24px, 4vw, 46px);
  padding: clamp(18px, 3vw, 30px);
  border: 2px solid var(--paper);
  border-radius: 10px;
  background: var(--teal);
  box-shadow: 8px 8px 0 var(--pink);
}

.wallet-checker label {
  font-size: 15px;
  font-weight: 950;
}

.wallet-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
}

.wallet-row input {
  min-width: 0;
  min-height: 54px;
  padding: 0 16px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  font-weight: 850;
}

.wallet-row input:focus {
  outline: 4px solid var(--yellow);
  outline-offset: 2px;
}

.wallet-result {
  color: rgba(255, 253, 248, 0.88);
  font-size: 14px;
  line-height: 1.55;
}

.wallet-result p {
  margin: 0 0 12px;
}

.wallet-result a {
  color: var(--white);
  font-weight: 950;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.wallet-result a:hover {
  color: var(--yellow);
}

.handle-choice-list {
  display: grid;
  gap: 10px;
  width: min(100%, 680px);
}

.handle-choice,
.wallet-choice {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-weight: 950;
  text-align: left;
  box-shadow: 4px 4px 0 var(--ink);
}

.handle-choice span,
.wallet-choice span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.handle-choice:hover,
.wallet-choice:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--ink);
}

.match-summary {
  display: grid;
  gap: 8px;
  width: min(100%, 680px);
  margin: 0 0 14px;
}

.match-summary div {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 9px 11px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
}

.match-summary dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.match-summary dd {
  margin: 0;
  overflow-wrap: anywhere;
  font-weight: 900;
}

.eligibility-details {
  width: min(100%, 680px);
}

.eligibility-details summary {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--yellow);
  color: var(--ink);
  cursor: pointer;
  font-weight: 950;
}

.eligibility-table-wrap {
  margin-top: 12px;
  overflow-x: auto;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--paper);
}

.eligibility-table {
  width: 100%;
  border-collapse: collapse;
  color: var(--ink);
  font-size: 14px;
}

.eligibility-table th,
.eligibility-table td {
  padding: 11px 12px;
  border-bottom: 1px solid rgba(21, 17, 17, 0.18);
  text-align: left;
}

.eligibility-table th:nth-child(2),
.eligibility-table td:nth-child(2) {
  width: 90px;
  text-align: right;
}

.eligibility-table a {
  color: var(--blue);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.eligibility-table a:hover {
  color: var(--pink);
}

.phase-pill {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  margin-right: 6px;
  padding: 0 8px;
  border-radius: 999px;
  background: var(--pink);
  color: var(--white);
  font-size: 12px;
  font-weight: 950;
  white-space: nowrap;
}

.eligibility-table tr:last-child td {
  border-bottom: 0;
}

.phase-rail {
  display: grid;
  grid-template-columns: minmax(280px, 1.25fr) minmax(220px, 0.8fr) minmax(260px, 1fr) minmax(210px, 0.7fr);
  gap: 14px;
}

.phase-note {
  max-width: 900px;
  margin: 0 0 22px;
  color: var(--muted);
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.5;
}

.phase-card {
  min-height: 0;
  padding: clamp(18px, 3vw, 28px);
  border: 2px solid var(--paper);
  border-radius: 10px;
  background: var(--paper-2);
  color: var(--ink);
  box-shadow: 6px 6px 0 var(--pink);
}

.phase-card.priority {
  background: var(--yellow);
  box-shadow: 6px 6px 0 var(--teal);
}

.phase-card span {
  display: block;
  margin-bottom: 24px;
  color: var(--blue);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.phase-card h3 {
  margin-bottom: 14px;
}

.phase-card p,
.phase-card li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.phase-card .phase-dm-button {
  min-height: 40px;
  width: fit-content;
  margin-top: 18px;
  padding: 0 14px;
  font-size: 14px;
}

.phase-card ul {
  display: grid;
  gap: 9px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.phase-card li {
  padding-left: 13px;
  border-left: 3px solid var(--pink);
}

.world-section {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(340px, 0.95fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: start;
  border-bottom: 2px solid var(--ink);
}

.world-copy p {
  margin-bottom: 0;
}

.world-copy a {
  color: var(--ink);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.path-grid a {
  display: grid;
  align-content: space-between;
  min-height: 128px;
  padding: 18px;
  border: 2px solid var(--ink);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 6px 6px 0 var(--ink);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.path-grid a:nth-child(3n + 1) {
  background: var(--yellow);
}

.path-grid a:nth-child(3n + 2) {
  background: var(--pink);
  color: var(--white);
}

.path-grid a:nth-child(3n) {
  background: var(--teal);
  color: var(--white);
}

.path-grid a:hover {
  transform: translate(2px, 2px);
  box-shadow: 4px 4px 0 var(--ink);
}

.path-grid span {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
  font-weight: 950;
}

.path-grid strong {
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1;
}

.artist-section {
  background: var(--paper-2);
}

.artist-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(300px, 0.76fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: center;
}

.artist-panel p {
  max-width: 720px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.social-links .social-website {
  background: var(--yellow);
}

.social-links .social-x {
  background: var(--pink);
}

.social-links .social-instagram {
  background: var(--teal);
}

.social-links a:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--ink);
}

.social-links svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.artist-images {
  position: relative;
  display: grid;
  gap: 0;
  padding-top: 16px;
  isolation: isolate;
}

.artist-images img {
  width: 100%;
  aspect-ratio: 16 / 11;
  border: 2px solid var(--ink);
  border-radius: 10px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.artist-images img:first-child {
  width: 86%;
  height: clamp(210px, 28vw, 310px);
  justify-self: start;
  object-position: left top;
  box-shadow: 8px 8px 0 var(--logo-blue);
  transform: translateX(-3%) rotate(-2.5deg);
  transform-origin: center;
}

.artist-images img:nth-child(2) {
  position: relative;
  z-index: 2;
  width: 96%;
  justify-self: end;
  margin-top: -38%;
  box-shadow: 8px 8px 0 var(--pink);
  cursor: grab;
  touch-action: none;
  user-select: none;
  transform: translate3d(var(--studio-drag-x, 0px), var(--studio-drag-y, 0px), 0) translateX(3%) rotate(1.6deg);
  transform-origin: center;
  transition: transform 320ms cubic-bezier(0.2, 1.2, 0.3, 1);
}

.artist-images img:nth-child(2).is-dragging {
  cursor: grabbing;
  transition: none;
}

.artist-images img:nth-child(2).is-returning {
  transition: transform 260ms cubic-bezier(0.16, 1.45, 0.35, 1);
}

.artist-images img:nth-child(2).is-settling {
  animation: studio-settle 420ms ease-out;
}

.artist-images .studio-note {
  justify-self: end;
  width: min(96%, 520px);
  margin: 18px 2% 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
  text-align: right;
  transform: rotate(1.6deg);
  transform-origin: right top;
}

@keyframes studio-settle {
  0% {
    transform: translate3d(0, 0, 0) translateX(3%) rotate(1.6deg);
  }
  30% {
    transform: translate3d(-7px, 3px, 0) translateX(3%) rotate(0.4deg);
  }
  62% {
    transform: translate3d(4px, -2px, 0) translateX(3%) rotate(2.2deg);
  }
  100% {
    transform: translate3d(0, 0, 0) translateX(3%) rotate(1.6deg);
  }
}

.mint-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 0.9fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: start;
  background:
    linear-gradient(135deg, rgba(240, 68, 155, 0.22), transparent 36%),
    linear-gradient(315deg, rgba(23, 155, 146, 0.24), transparent 38%),
    var(--paper);
  border-top: 2px solid var(--ink);
}

.mint-copy p {
  margin-bottom: 0;
}

.mint-panel {
  display: grid;
  gap: 18px;
}

.mint-details-panel {
  min-height: 460px;
  padding: clamp(20px, 4vw, 36px);
  border: 2px solid var(--ink);
  border-radius: 10px;
  background: var(--paper-2);
  box-shadow: var(--shadow);
}

.mint-details {
  display: grid;
  gap: 14px;
  margin: 0;
}

.mint-details div {
  display: grid;
  grid-template-columns: minmax(130px, 0.46fr) minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 2px solid rgba(21, 17, 17, 0.14);
}

.mint-details div:last-child {
  border-bottom: 0;
}

.mint-details dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.mint-details dd {
  margin: 0;
  color: var(--ink);
  font-size: clamp(22px, 4vw, 44px);
  font-weight: 950;
  line-height: 1;
}

.embed-placeholder {
  display: grid;
  place-items: center;
  min-height: 460px;
  border: 2px dashed var(--ink);
  border-radius: 10px;
  background:
    linear-gradient(45deg, rgba(21, 17, 17, 0.08) 25%, transparent 25% 50%, rgba(21, 17, 17, 0.08) 50% 75%, transparent 75%),
    var(--paper-2);
  background-size: 18px 18px;
  color: var(--muted);
  font-weight: 950;
}

.mint-panel iframe {
  width: 100%;
  min-height: 650px;
  border: 2px solid var(--ink);
  border-radius: 10px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 5vw, 72px);
  background: var(--ink);
  color: var(--paper);
  font-size: 14px;
  font-weight: 900;
}

.footer a {
  color: var(--yellow);
}

.footer-culture-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 230px;
}

.footer-culture-brand img {
  width: clamp(47px, 5.4vw, 67px);
  height: auto;
}

.footer-culture-brand span {
  color: var(--paper);
  line-height: 1;
  white-space: nowrap;
}

.footer-studio-mark {
  width: clamp(120px, 16vw, 156px);
  height: auto;
}

.footer-social {
  margin-top: 0;
}

.footer-social a {
  width: 40px;
  height: 40px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .marquee-track {
    animation: none;
  }

  .about-logo,
  .about-logo-shadow,
  .artist-images img:nth-child(2).is-settling {
    animation: none;
  }

  .button,
  .nav-links .nav-mint,
  .social-links a,
  .path-grid a,
  .artist-images img:nth-child(2) {
    transition: none;
  }
}

@media (max-width: 1020px) {
  .hero,
  .manifesto-grid,
  .access-copy,
  .world-section,
  .artist-panel,
  .mint-section {
    grid-template-columns: 1fr;
  }

  .manifesto-title {
    position: static;
  }

  .art-stack {
    min-height: 620px;
  }

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

@media (max-width: 720px) {
  .site-header {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .brand-mark {
    width: 58px;
    height: 58px;
  }

  .nav-links {
    justify-content: space-between;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
    font-size: 13px;
  }

  h1 {
    font-size: clamp(44px, 14vw, 84px);
  }

  .hero {
    min-height: 0;
  }

  .art-stack {
    min-height: 430px;
  }

  .stack-one,
  .stack-two {
    width: 36%;
    min-width: 96px;
  }

  .theme-strip,
  .phase-rail,
  .path-grid {
    grid-template-columns: 1fr;
  }

  .theme-strip article {
    min-height: 0;
    border-right: 0;
    border-bottom: 2px solid var(--ink);
  }

  .theme-strip article:last-child {
    border-bottom: 0;
  }

  .wallet-row {
    grid-template-columns: 1fr;
  }

  .phase-card {
    min-height: 0;
  }

  .mint-details div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .embed-placeholder,
  .mint-details-panel {
    min-height: 340px;
  }
}
