/* ═══════════════════════════════════════
   NUART.SPACE — PUNK × TECHNO × BRUTALIST
   Magenta-Green Gradients · Web3 · Art Collage
   ═══════════════════════════════════════ */
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}

:root {
  --bg: #0a0a0a;
  --bg2: #111;
  --bg3: #181818;
  --white: #fff;
  --off: #e8e5e0;
  --gray: #888;
  --magenta: #e91e8c;
  --pink: #ff2d95;
  --purple: #a855f7;
  --green: #00e676;
  --lime: #b8ff57;
  --yellow: #ffe600;
  --cyan: #00e5ff;
  --red: #ff2442;
  --gradient: linear-gradient(135deg, var(--magenta), var(--purple), var(--green));
  --gradient-h: linear-gradient(90deg, var(--magenta), var(--purple), var(--green));
  --gradient-text: linear-gradient(135deg, var(--pink), var(--purple), var(--green));
  --font-tech: 'Space Mono', monospace;
  --font-brutal: 'Oswald', sans-serif;
  --font-display: 'Syne', 'Bebas Neue', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --container: 1440px;
  --pad: clamp(100px, 14vh, 200px);
}

html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-body); background: var(--bg); color: var(--off);
  line-height: 1.5; overflow-x: hidden;
}

::selection { background: var(--magenta); color: var(--white); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { background: none; border: none; color: inherit; cursor: pointer; font-family: inherit; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 clamp(24px, 4vw, 64px); }

/* GRADIENT TEXT utility */
.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.accent-dot { color: var(--magenta); -webkit-text-fill-color: var(--magenta); }

/* ════════════ PRELOADER ════════════ */
#preloader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s;
}
#preloader.done {
  opacity: 0; visibility: hidden; pointer-events: none;
}
.preloader-inner {
  display: flex; flex-direction: column; align-items: center; gap: 32px;
}
.preloader-logo {
  display: flex; gap: 4px;
}
.pl-letter {
  font-family: var(--font-brutal); font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 700; letter-spacing: 0.1em;
  opacity: 0; transform: translateY(20px);
  animation: plReveal 0.5s var(--ease) forwards;
}
.pl-n { color: var(--white); animation-delay: 0.1s; }
.pl-u { color: var(--white); animation-delay: 0.2s; }
.pl-a { color: var(--magenta); animation-delay: 0.3s; }
.pl-r { color: var(--purple); animation-delay: 0.4s; }
.pl-t { color: var(--green); animation-delay: 0.5s; }
.pl-dot { color: var(--yellow); animation-delay: 0.6s; }

@keyframes plReveal {
  to { opacity: 1; transform: translateY(0); }
}

/* progress bar */
.preloader-bar {
  width: clamp(200px, 30vw, 320px); height: 2px;
  background: rgba(255,255,255,0.08); overflow: hidden;
}
.preloader-fill {
  height: 100%; width: 0%;
  background: var(--gradient-h);
  transition: width 0.3s ease-out;
}

/* status text */
.preloader-status {
  font-family: var(--font-tech); font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.25em; color: var(--gray);
  animation: plPulse 1.5s ease-in-out infinite;
}
@keyframes plPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ════════════ IMAGE BLUR-UP LOADING ════════════ */
.img-lazy {
  filter: blur(20px) saturate(0.5);
  transform: scale(1.05);
  transition: filter 0.8s var(--ease), transform 0.8s var(--ease);
  will-change: filter, transform;
  color: transparent;
}
.img-lazy.img-loaded {
  filter: blur(0) saturate(1);
  transform: scale(1);
}

/* skeleton shimmer for image containers before load */
.hero-img-block,
.mag-col-img,
.collage-item,
.a-img,
.a-highlight-img,
.coll-img {
  position: relative; overflow: hidden; background: var(--bg3);
}
.hero-img-block::before,
.mag-col-img::before,
.collage-item::before,
.a-img::before,
.a-highlight-img::before,
.coll-img::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    110deg,
    transparent 25%,
    rgba(255,255,255,0.03) 37%,
    transparent 50%
  );
  background-size: 250% 100%;
  animation: shimmer 1.8s ease-in-out infinite;
  pointer-events: none;
  transition: opacity 0.5s;
}
.img-loaded ~ .shimmer-off,
.hero-img-block.loaded::before,
.mag-col-img.loaded::before,
.collage-item.loaded::before,
.a-img.loaded::before,
.a-highlight-img.loaded::before,
.coll-img.loaded::before {
  opacity: 0;
}
@keyframes shimmer {
  0% { background-position: 250% 0; }
  100% { background-position: -250% 0; }
}

/* ── CURSOR ── */
#cursor-dot {
  position: fixed; width: 16px; height: 16px; border-radius: 50%;
  border: 2px solid var(--magenta); pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%); transition: width 0.2s, height 0.2s, border-color 0.3s;
  mix-blend-mode: difference;
}

/* ════════════ NAV ════════════ */
#main-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px clamp(24px, 4vw, 64px);
  transition: all 0.4s; border-bottom: 1px solid transparent;
}
#main-nav.scrolled {
  background: rgba(10,10,10,0.92); backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(233,30,140,0.2);
}

.nav-logo {
  font-family: var(--font-brutal); font-size: 1.8rem; font-weight: 700;
  letter-spacing: 0.15em; z-index: 1001;
}
.logo-n,.logo-u { color: var(--white); }
.logo-a { color: var(--magenta); }
.logo-r { color: var(--purple); }
.logo-t { color: var(--green); }
.logo-dot { color: var(--yellow); }
.logo-space { color: var(--gray); font-size: 0.45em; letter-spacing: 0.4em; vertical-align: middle; }

.nav-links { display: flex; gap: clamp(16px, 2.5vw, 36px); }
.nav-link {
  font-family: var(--font-tech); font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.1em; color: var(--gray); transition: color 0.3s;
}
.nav-link:hover { color: var(--magenta); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-cta {
  font-family: var(--font-brutal); font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.15em; padding: 10px 24px;
  background: var(--gradient); color: var(--bg);
  transition: transform 0.3s, box-shadow 0.3s;
}
.nav-cta-artist {
  background: transparent;
  color: var(--lime);
  border: 1px solid rgba(184,255,87,0.45);
}
.nav-cta-artist:hover {
  box-shadow: 0 6px 28px rgba(184,255,87,0.18);
}
.nav-cta.is-authenticated,
.mobile-cta.is-authenticated {
  color: var(--off);
  border-color: rgba(0,229,255,0.38);
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(233,30,140,0.4);
}

.nav-burger { display: none; flex-direction: column; gap: 6px; z-index: 1001; padding: 8px; }
.nav-burger span { width: 28px; height: 2px; background: var(--white); transition: all 0.3s; }
.nav-burger.active span:nth-child(1) { transform: rotate(45deg) translateY(5.5px); }
.nav-burger.active span:nth-child(2) { opacity: 0; }
.nav-burger.active span:nth-child(3) { transform: rotate(-45deg) translateY(-5.5px); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 999; background: rgba(10,10,10,0.98);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 28px;
  opacity: 0; pointer-events: none; transition: opacity 0.4s;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-link {
  font-family: var(--font-brutal); font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 700; letter-spacing: 0.1em; color: var(--white);
}
.mobile-link:hover { color: var(--magenta); }
.mobile-cta { font-family: var(--font-brutal); font-size: 1rem; padding: 16px 40px; background: var(--gradient); color: var(--bg); margin-top: 24px; }
.mobile-cta-artist {
  background: transparent;
  color: var(--lime);
  border: 1px solid rgba(184,255,87,0.45);
}



/* ════════════ VISIBILITY LOGIC ════════════ */
html.is-mobile .desktop-only, html.is-tablet .desktop-only { display: none !important; }
html.is-desktop .mobile-only { display: none !important; }

/* ════════════ HERO — BRUTALIST COLLAGE ════════════ */
.section-hero {
  position: relative; z-index: 2; min-height: calc(var(--vh, 1vh) * 100);
  display: flex; flex-direction: column; overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr 1fr;
  grid-template-rows: 1fr;
  min-height: calc(var(--vh, 1vh) * 100); gap: 3px;
}
.hero-img-block {
  overflow: hidden; position: relative;
}
.hero-img-block img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s var(--ease);
}
.hero-img-block:hover img { transform: scale(1.08); }

.hero-img-1 { grid-column: 1; }
.hero-img-2 { grid-column: 2; }
.hero-img-3 { grid-column: 4; }

.hero-text-block {
  grid-column: 3; display: flex; flex-direction: column;
  justify-content: center; padding: clamp(40px,5vw,80px);
  background: var(--bg); position: relative; z-index: 5;
}

.hero-badges { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-tech); font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.15em; color: var(--green);
}
.hero-badge-territory {
  color: var(--gray); font-size: 0.7rem; letter-spacing: 0.2em;
  border-left: 2px solid var(--magenta); padding-left: 12px;
}
.badge-pulse {
  width: 10px; height: 10px; background: var(--green); border-radius: 50%;
  animation: bpulse 1.5s ease-in-out infinite; flex-shrink: 0;
}
@keyframes bpulse {
  0%,100%{ box-shadow: 0 0 0 0 rgba(0,230,118,0.6); }
  50%{ box-shadow: 0 0 0 10px rgba(0,230,118,0); }
}

.hero-title {
  font-family: var(--font-brutal); font-weight: 700;
  font-size: clamp(3.5rem, 8vw, 7rem); line-height: 0.92;
  text-transform: uppercase; letter-spacing: -0.02em;
  margin-bottom: 32px;
}
.hero-line-1 { display: block; color: var(--white); }
.hero-line-2 { display: block; background: var(--gradient-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-line-3 { display: block; color: var(--white); }
.hero-dot { color: var(--magenta); -webkit-text-fill-color: var(--magenta); }

.hero-sub {
  font-family: var(--font-body); font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: var(--gray); margin-bottom: 40px; line-height: 1.7;
}
.hero-sub p { font-weight: 400; }

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.btn-neon {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-brutal); font-size: 0.95rem; font-weight: 700;
  letter-spacing: 0.12em; padding: 16px 36px;
  background: var(--gradient); color: var(--bg);
  transition: all 0.3s var(--ease); position: relative; overflow: hidden;
}
.btn-neon:hover { transform: translateY(-3px); box-shadow: 0 8px 40px rgba(233,30,140,0.35); }
.btn-neon .btn-arrow { font-size: 1.3em; }
.btn-neon.btn-lg { padding: 20px 48px; font-size: 1rem; }
.btn-neon.btn-xl { padding: 24px 56px; font-size: 1.05rem; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-brutal); font-size: 0.95rem; font-weight: 700;
  letter-spacing: 0.12em; padding: 16px 36px;
  border: 2px solid var(--white); color: var(--white);
  transition: all 0.3s;
}
.btn-outline:hover { border-color: var(--magenta); color: var(--magenta); background: rgba(233,30,140,0.06); }
.btn-outline.btn-xl { padding: 24px 56px; font-size: 1.05rem; }

/* FUND THE FREEDOM — special accent button */
.btn-fund {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-brutal); font-size: 0.95rem; font-weight: 700;
  letter-spacing: 0.12em; padding: 16px 36px;
  border: 2px solid var(--yellow); color: var(--yellow);
  background: transparent; transition: all 0.3s var(--ease);
  position: relative; overflow: hidden;
}
.btn-fund::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,230,0,0.08), rgba(233,30,140,0.08));
  opacity: 0; transition: opacity 0.3s;
}
.btn-fund:hover::before { opacity: 1; }
.btn-fund:hover {
  border-color: var(--magenta); color: var(--magenta);
  transform: translateY(-3px); box-shadow: 0 8px 40px rgba(255,230,0,0.2);
}
.btn-fund.btn-lg { padding: 20px 48px; font-size: 1rem; }
.btn-fund.btn-xl { padding: 24px 56px; font-size: 1.05rem; }

.hero-gradient-bar {
  height: 4px; background: var(--gradient-h); flex-shrink: 0;
}

.hero-mobile {
  position: relative;
  min-height: calc(var(--vh, 1vh) * 100);
  display: flex;
  align-items: flex-end;
  padding: clamp(88px, 12vh, 132px) clamp(24px, 4vw, 40px) clamp(32px, 5vh, 56px);
  background:
    radial-gradient(circle at top left, rgba(233,30,140,0.18), transparent 42%),
    radial-gradient(circle at top right, rgba(0,230,118,0.12), transparent 36%),
    linear-gradient(180deg, rgba(10,10,10,0.35) 0%, rgba(10,10,10,0.78) 58%, rgba(10,10,10,0.98) 100%),
    var(--bg);
  isolation: isolate;
}

.hero-mobile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.1) 0%, rgba(10,10,10,0.72) 62%, rgba(10,10,10,0.96) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-mobile::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(180deg, rgba(10,10,10,0) 0%, rgba(10,10,10,0.92) 100%);
  z-index: 1;
  pointer-events: none;
}

.hm-img-1,
.hm-img-2 {
  position: absolute;
  overflow: hidden;
  background: var(--bg3);
  box-shadow: 0 24px 80px rgba(0,0,0,0.45);
}

.hm-img-1 img,
.hm-img-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hm-img-1 {
  top: 0;
  left: 0;
  width: min(46vw, 420px);
  height: min(58vh, 620px);
  z-index: 0;
}

.hm-img-2 {
  top: clamp(108px, 18vh, 180px);
  right: 0;
  width: min(42vw, 360px);
  height: min(40vh, 420px);
  z-index: 2;
  border: 3px solid rgba(255,255,255,0.06);
}

.hm-content {
  position: relative;
  z-index: 3;
  width: min(100%, 560px);
  padding: clamp(28px, 4vw, 40px);
  background: linear-gradient(180deg, rgba(10,10,10,0.22) 0%, rgba(10,10,10,0.74) 22%, rgba(10,10,10,0.96) 100%);
  border-left: 3px solid rgba(233,30,140,0.8);
  box-shadow: 0 22px 80px rgba(0,0,0,0.42);
  backdrop-filter: blur(8px);
}

.hero-mobile .hero-badge-territory {
  max-width: 28rem;
}

.hero-mobile .hero-sub {
  max-width: 24rem;
}

.hero-mobile .hero-actions {
  margin-top: 4px;
}



/* ════════════ TICKER ════════════ */
.ticker-wrap {
  position: relative; z-index: 5; overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: var(--bg);
}
.ticker-gradient-bg {
  background: var(--gradient) !important;
  border-color: transparent !important;
}
.ticker {
  display: flex; gap: 40px; white-space: nowrap;
  animation: marquee 18s linear infinite;
  font-family: var(--font-brutal); font-size: clamp(1.1rem, 2.5vw, 1.8rem);
  letter-spacing: 0.2em; color: var(--off); font-weight: 600;
}
.ticker span { flex-shrink: 0; }
.t-sep { color: var(--magenta); font-size: 0.5em; }
.ticker-reverse { animation-direction: reverse; animation-duration: 22s; }
.ticker-gradient-bg .ticker { color: var(--bg) !important; }
.ticker-gradient-bg .t-sep { color: var(--bg) !important; opacity: 0.3; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ════════════ SECTION TYPOGRAPHY ════════════ */
.mag-overline,.a-label,.c-label,.s-label,.rm-label,.faq-label,.token-label,.mig-label {
  font-family: var(--font-tech); font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.2em; color: var(--magenta); margin-bottom: 16px;
  display: block;
}

/* ════════════ MANIFESTO ════════════ */
.section-manifesto {
  position: relative; z-index: 5; padding: var(--pad) 0 0; background: var(--bg); overflow: hidden;
}
.mag-spread {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(40px,6vw,100px);
  align-items: center; max-width: var(--container); margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 64px);
}
.mag-headline {
  font-family: var(--font-brutal); font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700; line-height: 0.95; text-transform: uppercase;
  letter-spacing: -0.01em; color: var(--white); margin-bottom: 28px;
}
.mag-body {
  font-size: 1.15rem; color: var(--off); margin-bottom: 28px; line-height: 1.8;
}
.mag-body strong { color: var(--magenta); font-weight: 700; }
.mag-rules { display: flex; flex-direction: column; gap: 14px; }
.rule {
  font-family: var(--font-body); font-size: 1.05rem; color: var(--gray);
  display: flex; align-items: center; gap: 12px;
}
.rule-mark { color: var(--magenta); font-size: 1.2rem; font-weight: 700; }

.mag-col-img {
  position: relative; overflow: hidden;
}
.mag-col-img img {
  width: 100%; height: auto; filter: contrast(1.1);
  transition: transform 0.8s var(--ease);
}
.mag-col-img:hover img { transform: scale(1.04); }
.mag-img-label {
  position: absolute; bottom: 16px; left: 16px;
  font-family: var(--font-tech); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.2em; color: var(--green);
  background: rgba(10,10,10,0.8); padding: 6px 14px;
}




/* ═══ BAN STRIP — Minimalist Line-Art Glyphs + Glitch ═══ */
.ban-strip {
  max-width: var(--container); margin: 0 auto;
  padding: clamp(48px,8vh,100px) clamp(24px, 4vw, 64px);
}
.ban-strip-inner {
  display: flex; flex-direction: column; align-items: center; gap: 40px;
}
.ban-label {
  font-family: var(--font-brutal); font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700; letter-spacing: 0.25em; color: var(--red);
  text-transform: uppercase;
}
.ban-icons {
  display: flex; gap: clamp(40px, 8vw, 100px); justify-content: center;
  flex-wrap: wrap;
}
.ban-circle {
  display: flex; flex-direction: column;
  align-items: center; gap: 18px; cursor: default;
}
.ban-glyph-wrap {
  position: relative;
  width: clamp(110px, 16vw, 170px); height: clamp(110px, 16vw, 170px);
  display: flex; align-items: center; justify-content: center;
}
.ban-glyph {
  position: absolute; width: 50%; height: 50%;
  color: rgba(255,255,255,0.45);
  transition: opacity 0.4s, transform 0.4s;
}
.ban-cross {
  position: absolute; width: 100%; height: 100%;
  fill: none; stroke: var(--red);
  filter: drop-shadow(0 0 15px rgba(255,36,66,0.25));
  transition: filter 0.4s, transform 0.4s;
}
.ban-circle:hover .ban-cross {
  filter: drop-shadow(0 0 35px rgba(255,36,66,0.6));
  transform: scale(1.06);
}
.ban-circle:hover .ban-glyph {
  color: rgba(255,255,255,0.2);
  animation: banGlitch 0.3s steps(3) 1;
}
@keyframes banGlitch {
  0%  { transform: translate(0, 0); }
  25% { transform: translate(-3px, 2px) skewX(-2deg); }
  50% { transform: translate(3px, -1px) skewX(1deg); }
  75% { transform: translate(-2px, -2px) skewX(2deg); }
  100%{ transform: translate(0, 0); }
}
.ban-name {
  font-family: var(--font-tech); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.2em; color: var(--gray);
  text-transform: uppercase;
}

.ban-divider {
  width: 100%; max-width: 600px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
}

.allowed-strip {
  display: flex; align-items: center; gap: 20px;
  padding: 24px 36px; background: rgba(0,230,118,0.04);
  border: 1px solid rgba(0,230,118,0.15);
  max-width: 700px;
}
.allowed-icon {
  font-size: 2.5rem; color: var(--green); font-weight: 700;
  flex-shrink: 0; line-height: 1;
}
.allowed-text {
  display: flex; flex-direction: column; gap: 4px;
}
.allowed-label {
  font-family: var(--font-brutal); font-size: 1rem; font-weight: 700;
  letter-spacing: 0.2em; color: var(--green);
}
.allowed-desc {
  font-size: 0.95rem; color: var(--off); line-height: 1.6;
}




/* ════════════ COLLAGE BREAK ════════════ */
.collage-break {
  position: relative; z-index: 5;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 3px;
  height: clamp(200px, 35vh, 400px); overflow: hidden;
}
.collage-item { overflow: hidden; position: relative; }
.collage-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease), filter 0.6s;
  filter: saturate(0.7) contrast(1.1);
}
.collage-item:hover img { transform: scale(1.1); filter: saturate(1.2) contrast(1); }
.collage-overlay-text {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  font-family: var(--font-brutal); font-size: clamp(1.5rem, 4vw, 3.5rem);
  font-weight: 700; letter-spacing: 0.15em; color: var(--white);
  text-shadow: 0 0 60px rgba(0,0,0,0.8); z-index: 10;
  pointer-events: none; white-space: nowrap;
  mix-blend-mode: difference;
}

/* ════════════ TOKEN ════════════ */
.section-token {
  position: relative; z-index: 5; padding: var(--pad) 0; background: var(--bg2);
}
.token-grid {
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: clamp(40px,6vw,100px); align-items: center;
}
.token-circle {
  width: clamp(200px,22vw,300px); height: clamp(200px,22vw,300px);
  border-radius: 50%; margin: 0 auto;
  background: conic-gradient(var(--magenta), var(--purple), var(--green), var(--magenta));
  display: flex; align-items: center; justify-content: center;
  animation: tokenSpin 8s linear infinite; position: relative;
}
.token-circle::after {
  content: ''; position: absolute; inset: 4px; border-radius: 50%;
  background: var(--bg2);
}
.token-txt {
  position: relative; z-index: 2;
  font-family: var(--font-brutal); font-size: clamp(1.8rem,3vw,2.5rem);
  font-weight: 700; letter-spacing: 0.1em;
  background: var(--gradient-text); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
@keyframes tokenSpin { to { transform: rotate(360deg); } }

.token-title {
  font-family: var(--font-brutal); font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700; line-height: 1; text-transform: uppercase;
  color: var(--white); margin-bottom: 20px;
}
.token-desc { font-size: 1.05rem; color: var(--gray); margin-bottom: 28px; line-height: 1.7; }
.token-desc strong { color: var(--green); }
.token-points { display: flex; flex-direction: column; gap: 12px; }
.tp { font-size: 1rem; color: var(--off); }
.tp::first-letter { color: var(--magenta); }

/* Token Integrations */
.token-integrations { margin-top: 28px; }
.ti-label {
  font-family: var(--font-tech); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.2em; color: var(--green); margin-bottom: 16px;
}
.ti-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; }
.ti-card {
  padding: 20px; background: var(--bg3);
  border-top: 2px solid var(--purple); transition: all 0.3s;
}
.ti-card:hover { background: rgba(168,85,247,0.06); border-top-color: var(--green); }
.ti-name {
  font-family: var(--font-brutal); font-size: 0.9rem; font-weight: 700;
  color: var(--white); letter-spacing: 0.08em; margin-bottom: 8px;
}
.ti-card p { font-size: 0.85rem; color: var(--gray); line-height: 1.6; }




/* ════════════ ARTISTS ════════════ */
.section-artists {
  position: relative; z-index: 5; padding: var(--pad) 0; background: var(--bg); overflow: hidden;
}
.artists-collage-layout {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px,6vw,80px); align-items: center;
  max-width: var(--container); margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 64px);
}
.a-title {
  font-family: var(--font-brutal); font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700; line-height: 1; text-transform: uppercase;
  color: var(--white); margin-bottom: 24px;
}
.a-highlight-row {
  display: flex; gap: 20px; align-items: stretch; margin-bottom: 24px;
}
.a-highlight {
  flex: 1; padding: 24px 28px;
  border-left: 3px solid var(--magenta);
  background: linear-gradient(135deg, rgba(233,30,140,0.05), rgba(168,85,247,0.03));
  display: flex; align-items: center;
}
.a-highlight p {
  font-family: var(--font-body); font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  color: var(--off); line-height: 1.6; font-weight: 500;
}
.a-highlight-img {
  width: clamp(120px, 14vw, 180px); flex-shrink: 0; overflow: hidden;
}
.a-highlight-img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: contrast(1.1) saturate(0.8);
  transition: transform 0.6s var(--ease), filter 0.4s;
}
.a-highlight-img:hover img {
  transform: scale(1.06); filter: contrast(1) saturate(1.2);
}


.a-cta-text { font-size: 1rem; color: var(--gray); margin-bottom: 20px; line-height: 1.7; }

/* Artist sub-headline — techno, not italic */
.a-subtitle {
  font-family: var(--font-tech); font-size: 0.9rem;
  color: var(--gray); margin-bottom: 20px; line-height: 1.7;
  letter-spacing: 0.05em;
}

/* Artist features */
.a-features { margin-bottom: 28px; }
.a-feature {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 1rem; color: var(--off);
}
.a-feature-n {
  font-family: var(--font-tech); font-size: 0.75rem; font-weight: 700;
  color: var(--green); flex-shrink: 0; min-width: 28px;
}

.artists-imgs {
  display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: 3px;
}
.a-img { overflow: hidden; }
.a-img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.8) contrast(1.1);
  transition: all 0.6s var(--ease);
}
.a-img:hover img { filter: saturate(1.2) contrast(1); transform: scale(1.06); }
.a-img-1 { grid-column: 1/-1; aspect-ratio: 16/9; }
.a-img-2 { aspect-ratio: 1; }
.a-img-3 { aspect-ratio: 1; }




/* ════════════ COLLECTORS ════════════ */
.section-collectors {
  position: relative; z-index: 5; padding: var(--pad) 0; background: var(--bg2);
}
.collectors-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,6vw,80px);
  align-items: center; max-width: var(--container); margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 64px);
}
.coll-img { position: relative; overflow: hidden; }
.coll-img img { width: 100%; height: auto; filter: contrast(1.1); transition: transform 0.8s var(--ease); }
.coll-img:hover img { transform: scale(1.04); }
.coll-img-stripe {
  position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  background: var(--gradient-h);
}
.c-title {
  font-family: var(--font-brutal); font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700; line-height: 1; text-transform: uppercase;
  color: var(--white); margin-bottom: 28px;
}
.c-points { display: flex; flex-direction: column; gap: 0; }
.c-point {
  padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 1.05rem; color: var(--off); display: flex; gap: 14px; align-items: flex-start;
}
.c-n { font-family: var(--font-tech); font-size: 0.75rem; font-weight: 700; color: var(--green); flex-shrink: 0; }
.c-point strong { color: var(--magenta); font-weight: 700; }

/* Collector sub-headline — techno, not italic */
.c-subtitle {
  font-family: var(--font-tech); font-size: 0.9rem;
  color: var(--gray); margin-bottom: 24px; line-height: 1.7;
  letter-spacing: 0.05em;
}




/* ════════════ MIGRATION ════════════ */
.section-migration {
  position: relative; z-index: 5; padding: var(--pad) 0; background: var(--bg); overflow: hidden;
}
.migration-spread {
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: clamp(40px,6vw,100px);
  align-items: center; max-width: var(--container); margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 64px);
}
.mig-title {
  font-family: var(--font-brutal); font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700; line-height: 1; text-transform: uppercase;
  color: var(--white); margin-bottom: 24px;
}
.mig-body {
  font-size: 1.1rem; color: var(--gray); margin-bottom: 28px; line-height: 1.7;
}
.mig-options { display: flex; flex-direction: column; gap: 3px; }
.mig-option {
  padding: clamp(20px,3vw,32px); background: var(--bg3);
  border-left: 3px solid var(--magenta); transition: all 0.4s;
}
.mig-option:hover {
  background: rgba(233,30,140,0.05); border-left-color: var(--green);
}
.mig-option-label {
  font-family: var(--font-tech); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.2em; color: var(--green); margin-bottom: 10px;
}
.mig-option p { font-size: 0.95rem; color: var(--off); line-height: 1.7; }

/* Migration visual — token morph */
.migration-visual {
  display: flex; align-items: center; justify-content: center;
}
.mig-token-morph {
  display: flex; align-items: center; gap: 24px;
  padding: 48px; background: var(--bg3); position: relative;
}
.mig-old, .mig-new {
  font-family: var(--font-brutal); font-size: clamp(1.8rem,3vw,2.5rem);
  font-weight: 700; letter-spacing: 0.1em; padding: 24px 32px;
}
.mig-old {
  color: var(--gray); border: 2px solid rgba(255,255,255,0.1);
  text-decoration: line-through; text-decoration-color: var(--red);
  opacity: 0.6;
}
.mig-new {
  background: var(--gradient); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
  border: 2px solid var(--magenta);
  box-shadow: 0 0 30px rgba(233,30,140,0.2);
}
.mig-arrow {
  font-size: 2rem; color: var(--magenta);
  animation: migPulse 2s ease-in-out infinite;
}
@keyframes migPulse {
  0%,100% { opacity: 1; transform: translateX(0); }
  50% { opacity: 0.5; transform: translateX(8px); }
}


/* ════════════ SUPPORT ════════════ */
.section-support {
  position: relative; z-index: 5; padding: var(--pad) 0; background: var(--bg2);
}
.section-support > .container { max-width: 960px; }
.s-title {
  font-family: var(--font-brutal); font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700; line-height: 1; text-transform: uppercase;
  color: var(--white); margin-bottom: 40px; text-align: center;
}

/* Story — dramatic quote */
.s-story-block { margin-bottom: 40px; }
.s-story-quote {
  position: relative; padding: 36px 40px 36px 48px;
  border-left: 4px solid var(--magenta);
  background: linear-gradient(135deg, rgba(233,30,140,0.04), rgba(168,85,247,0.03));
}
.s-quote-mark {
  position: absolute; top: -10px; left: 12px;
  font-family: var(--font-brutal); font-size: 5rem;
  color: var(--magenta); opacity: 0.25; line-height: 1;
  pointer-events: none;
}
.s-story-quote p {
  font-family: var(--font-body); font-size: clamp(1.15rem, 2vw, 1.4rem);
  color: var(--off); line-height: 1.7; position: relative; z-index: 1;
}
.s-story-quote strong {
  color: var(--magenta); font-weight: 700;
}

/* Funding callout */
.s-funding-block { margin-bottom: 48px; text-align: center; }
.s-funding-label {
  font-family: var(--font-tech); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.2em; color: var(--yellow); margin-bottom: 20px;
}
.s-funding-items {
  display: flex; justify-content: center; gap: 3px; flex-wrap: wrap;
}
.s-funding-item {
  display: flex; align-items: center; gap: 12px;
  padding: 18px 28px; background: var(--bg3);
  border-top: 2px solid var(--yellow);
  font-family: var(--font-body); font-size: 1rem; color: var(--off);
  transition: all 0.3s;
}
.s-funding-item:hover {
  background: rgba(255,230,0,0.04); border-top-color: var(--magenta);
  transform: translateY(-2px);
}
.s-funding-icon {
  color: var(--yellow); font-size: 1.2rem; flex-shrink: 0;
}

.support-center { text-align: center; margin-bottom: 48px; }
.perks { display: flex; justify-content: center; gap: 48px; margin-bottom: 48px; flex-wrap: wrap; }
.perk { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.perk-icon { font-size: 1.8rem; color: var(--magenta); }
.perk span:last-child {
  font-family: var(--font-brutal); font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.15em; color: var(--white);
}

/* OG Whitelist banner */
.s-og-banner { margin-top: 20px; }
.s-og-inner {
  display: flex; align-items: center; gap: 24px;
  padding: 28px 36px;
  background: linear-gradient(135deg, rgba(233,30,140,0.06), rgba(0,230,118,0.04));
  border: 1px solid;
  border-image: var(--gradient-h) 1;
  position: relative;
}
.s-og-badge {
  font-family: var(--font-brutal); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; letter-spacing: 0.1em;
  background: var(--gradient-text); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
  flex-shrink: 0;
}
.s-og-text {
  display: flex; flex-direction: column; gap: 6px;
}
.s-og-headline {
  font-family: var(--font-body); font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: var(--white); font-weight: 500; line-height: 1.5;
}
.s-og-headline strong {
  color: var(--green); font-weight: 700;
}
.s-og-sub {
  font-family: var(--font-tech); font-size: 0.75rem;
  letter-spacing: 0.1em; color: var(--gray);
}



/* ════════════ ROADMAP ════════════ */
.section-roadmap {
  position: relative; z-index: 5; padding: var(--pad) 0; background: var(--bg);
}
.rm-title {
  font-family: var(--font-brutal); font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700; line-height: 1; text-transform: uppercase;
  color: var(--white); margin-bottom: 48px;
}
.rm-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3px; }
.rm-grid-6 { grid-template-columns: repeat(3, 1fr); }
.rm-card {
  padding: clamp(28px,3vw,44px); background: var(--bg2);
  border-top: 3px solid var(--magenta); transition: all 0.4s;
  position: relative;
}
.rm-card:hover {
  background: rgba(233,30,140,0.05);
  border-top-color: var(--green);
  transform: translateY(-4px);
}
.rm-card.rm-active {
  border-top-color: var(--green);
  background: rgba(0,230,118,0.04);
}
.rm-phase {
  font-family: var(--font-tech); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.2em; color: var(--green); margin-bottom: 8px;
}
.rm-stage {
  font-family: var(--font-tech); font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.15em; color: var(--gray);
  padding: 4px 10px; display: inline-flex; align-items: center; gap: 6px;
  border: 1px solid rgba(255,255,255,0.1); margin-bottom: 14px;
}
.rm-stage-active {
  color: var(--green); border-color: rgba(0,230,118,0.3);
  background: rgba(0,230,118,0.06);
}
.rm-stage-active .badge-pulse {
  width: 6px; height: 6px;
}
.rm-stage-next {
  color: var(--yellow); border-color: rgba(255,230,0,0.3);
  background: rgba(255,230,0,0.04);
}
.rm-card h3 {
  font-family: var(--font-brutal); font-size: 1.1rem; font-weight: 700;
  color: var(--white); letter-spacing: 0.05em; margin-bottom: 10px; line-height: 1.2;
}
.rm-card p { font-size: 0.9rem; color: var(--gray); line-height: 1.6; }


/* ════════════ FAQ ════════════ */
.section-faq { position: relative; z-index: 5; padding: var(--pad) 0; background: var(--bg2); }
.faq-title {
  font-family: var(--font-brutal); font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700; line-height: 1; text-transform: uppercase;
  color: var(--white); margin-bottom: 48px;
}
.faq-list { max-width: 800px; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.06); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0; font-family: var(--font-body); font-size: 1.15rem;
  font-weight: 500; color: var(--off); text-align: left; transition: color 0.3s;
}
.faq-q:hover { color: var(--magenta); }
.faq-plus {
  font-family: var(--font-brutal); font-size: 2rem; color: var(--magenta);
  font-weight: 700; transition: transform 0.3s var(--ease);
}
.faq-item.active .faq-plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease), padding 0.5s; }
.faq-item.active .faq-a { max-height: 200px; padding-bottom: 24px; }
.faq-a p { font-size: 1rem; color: var(--gray); line-height: 1.7; }

/* ════════════ JOIN ════════════ */
.section-join {
  position: relative; z-index: 5; padding: clamp(140px,22vh,280px) 0;
  background: var(--bg); overflow: hidden; text-align: center;
}
.join-bg-collage { position: absolute; inset: 0; z-index: 0; }
.join-bg { width: 100%; height: 100%; object-fit: cover; opacity: 0.15; filter: grayscale(40%) contrast(1.3); }
.join-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(233,30,140,0.08) 50%, var(--bg) 100%);
}
.section-join .container { position: relative; z-index: 5; }
.join-title {
  font-family: var(--font-brutal); font-size: clamp(5rem, 14vw, 11rem);
  font-weight: 700; line-height: 0.85; text-transform: uppercase;
  color: var(--white); margin-bottom: 20px;
}
.join-sub {
  font-family: var(--font-tech); font-size: 0.95rem; color: var(--gray);
  margin-bottom: 48px; letter-spacing: 0.05em; line-height: 1.7;
}
.join-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ════════════ FOOTER ════════════ */
.site-footer {
  position: relative; z-index: 5; padding: 48px 0 24px; background: var(--bg2);
}
.footer-row {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 36px; flex-wrap: wrap; gap: 24px;
}
.footer-brand { display: flex; flex-direction: column; gap: 8px; }
.f-logo { font-family: var(--font-brutal); font-size: 2rem; font-weight: 700; letter-spacing: 0.15em; }
.f-tagline { font-size: 0.85rem; color: var(--gray); }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a {
  font-family: var(--font-tech); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.12em; color: var(--gray); transition: color 0.3s;
}
.footer-links a:hover { color: var(--magenta); }
.footer-bottom {
  font-family: var(--font-tech); font-size: 0.65rem; color: rgba(255,255,255,0.2);
  letter-spacing: 0.15em;
}
.footer-gradient-line {
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--gradient-h);
}

/* Footer enriched */
.footer-status {
  display: flex; align-items: center; gap: 8px; margin-top: 8px;
}
.footer-status-text {
  font-family: var(--font-tech); font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.15em; color: var(--green);
}
.footer-meta {
  display: flex; justify-content: space-between; align-items: flex-start;
  flex-wrap: wrap; gap: 24px; margin-bottom: 32px;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-socials { display: flex; gap: 20px; }
.f-social {
  font-family: var(--font-tech); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.12em; color: var(--gray); transition: color 0.3s;
}
.f-social:hover { color: var(--magenta); }
.footer-legal { display: flex; gap: 16px; }
.footer-legal a {
  font-family: var(--font-tech); font-size: 0.65rem;
  letter-spacing: 0.1em; color: rgba(255,255,255,0.3); transition: color 0.3s;
}
.footer-legal a:hover { color: var(--off); }
.footer-contract {
  display: flex; align-items: center; gap: 12px;
}
.fc-label {
  font-family: var(--font-brutal); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.1em; color: var(--green);
}
.fc-address {
  font-family: var(--font-tech); font-size: 0.65rem;
  color: rgba(255,255,255,0.3); letter-spacing: 0.05em;
}

/* ════════════ ANIMATIONS ════════════ */
.anim-fade { opacity: 0; transform: translateY(40px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.anim-fade.visible { opacity: 1; transform: translateY(0); }

.anim-slide-up { opacity: 0; transform: translateY(80px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.anim-slide-up.visible { opacity: 1; transform: translateY(0); }

.anim-slide-left { opacity: 0; transform: translateX(-80px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.anim-slide-left.visible { opacity: 1; transform: translateX(0); }

.anim-slide-right { opacity: 0; transform: translateX(80px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.anim-slide-right.visible { opacity: 1; transform: translateX(0); }

.anim-clip-reveal { clip-path: inset(0 0 100% 0); opacity: 0; transition: clip-path 1.2s var(--ease), opacity 0.6s var(--ease); }
.anim-clip-reveal.visible { clip-path: inset(0 0 0 0); opacity: 1; }

.anim-flip { opacity: 0; transform: perspective(800px) rotateY(30deg); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.anim-flip.visible { opacity: 1; transform: perspective(800px) rotateY(0deg); }

/* Noise */
body::after {
  content: ''; position: fixed; inset: 0; z-index: 9997; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  background-repeat: repeat; opacity: 0.3; mix-blend-mode: overlay;
}

/* ═══════════════════════════════════════
   MOBILE — COMPREHENSIVE RESPONSIVE
   ═══════════════════════════════════════ */

/* ── LARGE TABLET (≤1024px) ── */
@media (max-width: 1024px), (max-width: 1366px) and (hover: none), html.is-tablet {
  .hero-mobile .anim-fade,
  .hero-mobile .anim-slide-up,
  .hero-mobile .anim-slide-left,
  .hero-mobile .anim-slide-right,
  .hero-mobile .anim-clip-reveal {
    opacity: 1;
    transform: none;
    clip-path: inset(0 0 0 0);
    transition: none;
  }

  .hero-mobile {
    padding: 96px 32px 36px;
  }

  .hm-img-1 {
    width: 54%;
    height: 72%;
    max-height: 740px;
  }

  .hm-img-2 {
    top: 14%;
    width: 36%;
    height: 46%;
    max-height: 460px;
  }

  .hm-content {
    max-width: 520px;
    margin-bottom: 8px;
  }

  .hero-mobile .hero-title {
    font-size: clamp(4rem, 10vw, 6rem);
    margin-bottom: 20px;
  }

  .hero-mobile .hero-badges { margin-bottom: 20px; }

  .hero-mobile .hero-sub {
    font-size: 1rem;
    margin-bottom: 28px;
    max-width: 25rem;
  }

  .hero-mobile .hero-actions {
    gap: 12px;
  }

  .hero-mobile .hero-actions .btn-neon,
  .hero-mobile .hero-actions .btn-fund {
    min-width: 240px;
    justify-content: center;
  }

  /* Roadmap */
  .rm-grid, .rm-grid-6 { grid-template-columns: repeat(2, 1fr); }

  /* Token / Integrations */
  .ti-cards { grid-template-columns: 1fr; }
  
  /* Artists Collage */
  .artists-collage-layout { grid-template-columns: 1fr 1fr; gap: 40px; }
  .art-text-col, .art-img-col { grid-column: span 1; }

  /* Support */
  .s-funding-items { flex-direction: column; gap: 16px; }
  .s-funding-item { justify-content: flex-start; }
}

/* ── SMARTPHONE CONSTRAINED (≤768px) ── */
@media (max-width: 768px), html.is-mobile {
  :root {
    --pad: clamp(48px, 8vh, 84px);
  }

  /* Nav */
  .nav-links, .nav-actions { display: none; }
  .nav-burger {
    display: flex;
    margin-left: auto;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.10);
    backdrop-filter: blur(8px);
    padding: 0;
    flex-shrink: 0;
  }
  .nav-burger span { width: 22px; }

  /* Hero Mobile Wrapper Specifics */
  .hero-title { font-size: clamp(3rem, 12vw, 4.5rem); margin-bottom: 20px; }
  .hero-badges { margin-bottom: 20px; }
  .hero-sub { margin-bottom: 28px; }
  .hero-actions { flex-direction: column; gap: 12px; }
  .hero-actions .btn-neon,
  .hero-actions .btn-fund { width: 100%; justify-content: center; padding: 16px 24px; }

  .hero-mobile {
    padding: 82px 16px 20px;
  }

  .hm-img-1 {
    width: 52vw;
    height: 28vh;
    min-height: 210px;
  }

  .hm-img-2 {
    top: 118px;
    width: 56vw;
    height: 34vh;
    min-height: 250px;
  }

  .hm-content {
    width: 100%;
    margin-bottom: 0;
    padding: 20px 16px 16px;
  }

  .hero-mobile .hero-title { font-size: clamp(3rem, 12vw, 4.5rem); margin-bottom: 16px; }
  .hero-mobile .hero-badges { margin-bottom: 16px; }
  .hero-mobile .hero-badge { font-size: 0.72rem; }
  .hero-mobile .hero-badge-territory { font-size: 0.62rem; max-width: 18rem; }

  .hero-mobile .hero-sub {
    font-size: 0.9rem;
    margin-bottom: 20px;
    max-width: none;
  }

  .hero-mobile .hero-actions {
    flex-direction: column;
    gap: 12px;
  }

  .hero-mobile .hero-actions .btn-neon,
  .hero-mobile .hero-actions .btn-fund {
    width: 100%;
    min-width: 0;
    padding: 16px 24px;
  }

  .section-manifesto,
  .section-token,
  .section-artists,
  .section-collectors,
  .section-migration,
  .section-support,
  .section-roadmap,
  .section-faq {
    overflow: clip;
  }

  .ticker-wrap { padding: 12px 0; }

  .mag-spread,
  .token-grid,
  .artists-collage-layout,
  .collectors-split,
  .migration-spread {
    gap: 24px;
  }

  .mag-col-text,
  .token-info,
  .artists-text,
  .coll-text,
  .migration-text {
    max-width: none;
  }

  .mag-body { font-size: 1rem; line-height: 1.7; }
  .mag-col-img { max-width: none; }
  .allowed-strip { padding: 14px 16px; }
  .token-desc { max-width: none; }
  .token-points { max-width: none; }
  .tp { line-height: 1.6; }
  .a-cta-text { margin-bottom: 16px; line-height: 1.65; }
  .a-feature { line-height: 1.6; }
  .artists-imgs { max-width: none; }
  .c-subtitle,
  .mig-body,
  .join-sub { max-width: none; }
  .c-point { line-height: 1.65; }
  .s-title,
  .rm-title,
  .faq-title { margin-bottom: 24px; }
  .s-story-block { margin-bottom: 28px; }
  .support-center { margin-bottom: 32px; }
  .perks { margin-bottom: 28px; }
  .perk { width: 100%; justify-content: center; }
  .faq-q { line-height: 1.5; }

  .anim-fade,
  .anim-slide-up,
  .anim-slide-left,
  .anim-slide-right,
  .anim-clip-reveal,
  .anim-flip {
    opacity: 1 !important;
    transform: none !important;
    clip-path: inset(0 0 0 0) !important;
    transition: none !important;
  }

  /* Manifesto */
  .mag-spread { grid-template-columns: 1fr; gap: 32px; }
  .mag-headline { font-size: clamp(2.5rem, 10vw, 3.5rem); margin-bottom: 16px; }

  /* Ban strip */
  .ban-strip { padding: 40px 20px; }
  .ban-strip-inner { gap: 28px; }
  .ban-label { font-size: 1.2rem; letter-spacing: 0.2em; }
  .ban-icons { gap: 28px; }
  .ban-glyph-wrap { width: 100px; height: 100px; }
  .ban-name { font-size: 0.65rem; }

  /* Collage */
  .collage-break { grid-template-columns: repeat(2, 1fr); height: clamp(180px, 30vh, 280px); }
  .collage-overlay-text { font-size: clamp(1rem, 4vw, 1.8rem); }

  /* Token */
  .token-grid { grid-template-columns: 1fr; text-align: center; }
  .token-circle { width: 180px; height: 180px; margin-bottom: 20px; }
  .token-title { font-size: clamp(2rem, 7vw, 2.8rem); }
  .token-points { text-align: left; }
  .ti-cards { grid-template-columns: 1fr; }

  /* Artists */
  .artists-collage-layout { grid-template-columns: 1fr; gap: 32px; }
  .a-title { font-size: clamp(2.2rem, 9vw, 3rem); }
  .a-highlight-row { flex-direction: column; }
  .a-highlight-img { width: 100%; height: 180px; }
  .artists-imgs { gap: 3px; }

  /* Collectors */
  .collectors-split { grid-template-columns: 1fr; gap: 32px; }
  .coll-img { max-height: 50vh; }
  .c-title { font-size: clamp(2.2rem, 9vw, 3rem); }
  .c-point { font-size: 0.95rem; padding: 14px 0; }

  /* Migration */
  .migration-spread { grid-template-columns: 1fr; gap: 32px; }
  .mig-title { font-size: clamp(2.2rem, 9vw, 3rem); }
  .mig-token-morph { flex-direction: column; padding: 28px; gap: 16px; }
  .mig-arrow { transform: rotate(90deg); }
  .mig-old, .mig-new { font-size: 1.5rem; padding: 16px 24px; }

  /* Support */
  .s-title { font-size: clamp(2.2rem, 9vw, 3rem); }
  .s-story-quote { padding: 24px 20px 24px 28px; }
  .s-story-quote p { font-size: 1.05rem; }
  .s-quote-mark { font-size: 3.5rem; left: 6px; top: -6px; }
  .s-funding-items { flex-direction: column; }
  .s-funding-item { padding: 14px 20px; font-size: 0.9rem; }
  .perks { gap: 24px; flex-direction: column; align-items: center; }
  .perk { flex-direction: row; gap: 14px; }
  .s-og-inner { flex-direction: column; text-align: center; padding: 24px 20px; }
  .s-og-badge { font-size: 2rem; }

  /* Roadmap */
  .rm-grid, .rm-grid-6 { grid-template-columns: 1fr; }
  .rm-title { font-size: clamp(2.2rem, 9vw, 3rem); margin-bottom: 32px; }
  .rm-card { padding: 24px; }
  .rm-card h3 { font-size: 0.95rem; }

  /* FAQ */
  .faq-title { font-size: clamp(2.2rem, 9vw, 3rem); margin-bottom: 32px; }
  .faq-q { padding: 18px 0; font-size: 1rem; }

  /* Join */
  .join-title { font-size: clamp(4rem, 16vw, 7rem); }
  .join-sub { font-size: 0.85rem; margin-bottom: 32px; }
  .join-btns { flex-direction: column; }
  .join-btns .btn-neon,
  .join-btns .btn-fund { width: 100%; justify-content: center; }
  .btn-neon.btn-xl, .btn-fund.btn-xl { padding: 18px 32px; font-size: 0.9rem; }

  /* Footer */
  .footer-row { flex-direction: column; gap: 28px; }
  .footer-links { gap: 16px; }
  .footer-meta { flex-direction: column; gap: 20px; }
  .footer-contract { flex-direction: column; gap: 6px; }
}

/* ── SMALL PHONE (≤480px) ── */
@media (max-width: 480px) {
  :root {
    --pad: clamp(40px, 8vh, 72px);
  }

  .container { padding: 0 16px; }

  /* Preloader */
  .pl-letter { font-size: 2.5rem; }
  .preloader-bar { width: 200px; }

  /* Nav */
  .nav-logo { font-size: 1.4rem; }

  /* Hero Mobile Tweaks */
  .hero-mobile {
    padding: 78px 8px 16px;
  }

  .hm-img-1 { width: 54vw; height: 26vh; min-height: 185px; }
  .hm-img-2 { top: 112px; width: 58vw; height: 29vh; min-height: 210px; }
  .hm-content { padding: 18px 12px 14px; }

  .hero-mobile .hero-title { font-size: clamp(2.5rem, 14vw, 3.5rem); margin-bottom: 14px; }
  .hero-mobile .hero-badge { font-size: 0.68rem; }
  .hero-mobile .hero-badge-territory { font-size: 0.58rem; }
  .hero-mobile .hero-sub { font-size: 0.88rem; margin-bottom: 18px; }
  .hero-mobile .hero-actions .btn-neon,
  .hero-mobile .hero-actions .btn-fund { padding: 15px 20px; }

  /* Section labels */
  .mag-overline, .a-label, .c-label, .s-label, .rm-label, .faq-label, .token-label, .mig-label {
    font-size: 0.7rem; margin-bottom: 10px;
  }

  /* Manifesto */
  .mag-headline { font-size: clamp(2.2rem, 11vw, 2.8rem); }
  .mag-body { font-size: 1rem; margin-bottom: 20px; }
  .rule { font-size: 0.9rem; gap: 8px; }

  /* Ban strip */
  .ban-strip { padding: 32px 16px; }
  .ban-label { font-size: 1rem; }
  .ban-icons { gap: 20px; }
  .ban-glyph-wrap { width: 80px; height: 80px; }
  .ban-name { font-size: 0.6rem; letter-spacing: 0.15em; }
  .allowed-strip { flex-direction: column; text-align: center; padding: 16px; gap: 12px; }
  .allowed-icon { font-size: 2rem; }
  .allowed-desc { font-size: 0.85rem; }

  /* Collage */
  .collage-break { height: clamp(140px, 25vh, 200px); }
  .collage-overlay-text { font-size: 0.9rem; letter-spacing: 0.1em; }

  /* Token */
  .token-circle { width: 140px; height: 140px; }
  .token-txt { font-size: 1.4rem; }
  .token-title { font-size: clamp(1.8rem, 7vw, 2.2rem); }
  .token-desc { font-size: 0.9rem; }
  .tp { font-size: 0.9rem; }
  .ti-card { padding: 14px; }
  .ti-name { font-size: 0.8rem; }
  .ti-card p { font-size: 0.8rem; }

  /* Artists */
  .a-title { font-size: clamp(2rem, 10vw, 2.5rem); }
  .a-highlight { padding: 18px 20px; }
  .a-highlight p { font-size: 1rem; }
  .a-highlight-img { height: 140px; }
  .a-cta-text { font-size: 0.9rem; }
  .a-feature { padding: 10px 0; font-size: 0.9rem; }
  .a-feature-n { font-size: 0.65rem; }
  .btn-neon, .btn-fund { font-size: 0.85rem; padding: 14px 28px; }

  /* Collectors */
  .coll-img { max-height: 40vh; }
  .c-title { font-size: clamp(2rem, 10vw, 2.5rem); }
  .c-subtitle { font-size: 0.8rem; }
  .c-point { font-size: 0.9rem; gap: 10px; }
  .c-n { font-size: 0.65rem; }

  /* Migration */
  .mig-title { font-size: clamp(2rem, 10vw, 2.5rem); }
  .mig-body { font-size: 0.95rem; }
  .mig-option { padding: 18px; }
  .mig-option-label { font-size: 0.65rem; }
  .mig-option p { font-size: 0.85rem; }
  .mig-old, .mig-new { font-size: 1.2rem; padding: 14px 20px; }

  /* Support */
  .s-title { font-size: clamp(2rem, 10vw, 2.5rem); margin-bottom: 28px; }
  .s-story-quote { padding: 18px 16px 18px 22px; }
  .s-story-quote p { font-size: 0.95rem; }
  .s-quote-mark { font-size: 2.5rem; left: 4px; }
  .s-funding-label { font-size: 0.65rem; }
  .s-funding-item { font-size: 0.85rem; padding: 12px 16px; }
  .perk-icon { font-size: 1.3rem; }
  .perk span:last-child { font-size: 0.75rem; letter-spacing: 0.1em; }
  .s-og-headline { font-size: 1rem; }
  .s-og-sub { font-size: 0.65rem; }

  /* Roadmap */
  .rm-title { font-size: clamp(2rem, 10vw, 2.5rem); margin-bottom: 24px; }
  .rm-card { padding: 20px; }
  .rm-phase { font-size: 0.65rem; }
  .rm-stage { font-size: 0.55rem; padding: 3px 8px; margin-bottom: 10px; }
  .rm-card h3 { font-size: 0.85rem; margin-bottom: 6px; }
  .rm-card p { font-size: 0.8rem; }

  /* FAQ */
  .faq-title { font-size: clamp(2rem, 10vw, 2.5rem); margin-bottom: 24px; }
  .faq-q { padding: 14px 0; font-size: 0.9rem; }
  .faq-plus { font-size: 1.5rem; }
  .faq-a p { font-size: 0.85rem; }

  /* Join */
  .section-join { padding: clamp(80px, 16vh, 160px) 0; }
  .join-title { font-size: clamp(3rem, 18vw, 5rem); }
  .join-sub { font-size: 0.8rem; margin-bottom: 24px; }
  .join-btns .btn-neon,
  .join-btns .btn-fund { padding: 16px 24px; font-size: 0.85rem; }

  /* Footer */
  .f-logo { font-size: 1.5rem; }
  .f-tagline { font-size: 0.75rem; }
  .footer-links { gap: 12px; }
  .footer-links a { font-size: 0.65rem; }
  .footer-socials { gap: 14px; }
  .f-social { font-size: 0.6rem; }
  .footer-legal a { font-size: 0.55rem; }
  .fc-label { font-size: 0.6rem; }
  .fc-address { font-size: 0.55rem; }
  .footer-bottom { font-size: 0.55rem; }

  /* Buttons consistent */
  .btn-neon.btn-xl, .btn-fund.btn-xl { padding: 16px 24px; font-size: 0.85rem; }
  .btn-neon.btn-lg, .btn-fund.btn-lg { padding: 16px 30px; font-size: 0.85rem; }

  /* Ticker compact */
  .ticker { font-size: 0.9rem; gap: 20px; letter-spacing: 0.1em; }

  /* Reduce animation distance on mobile */
  .anim-fade { transform: translateY(20px); }
  .anim-slide-up { transform: translateY(40px); }
  .anim-slide-left { transform: translateX(-40px); }
  .anim-slide-right { transform: translateX(40px); }
}

/* ── Touch devices — disable hover effects ── */
@media (hover: none) {
  #cursor-dot { display: none; }
  body::after { display: none; }
  .img-lazy {
    filter: none !important;
    transform: none !important;
  }
  .hero-img-block::before,
  .mag-col-img::before,
  .collage-item::before,
  .a-img::before,
  .a-highlight-img::before,
  .coll-img::before {
    display: none !important;
  }
  .anim-fade,
  .anim-slide-up,
  .anim-slide-left,
  .anim-slide-right,
  .anim-clip-reveal,
  .anim-flip {
    opacity: 1 !important;
    transform: none !important;
    clip-path: inset(0 0 0 0) !important;
    transition: none !important;
  }
  .hero-img-block:hover img { transform: none; }
  .mag-col-img:hover img { transform: none; }
  .collage-item:hover img { transform: none; }
  .a-img:hover img { transform: none; }
  .coll-img:hover img { transform: none; }
  .rm-card:hover { transform: none; }
  .btn-neon:hover { transform: none; box-shadow: none; }
  .btn-fund:hover { transform: none; box-shadow: none; }
  .s-funding-item:hover { transform: none; }
}

body.modal-open {
  overflow: hidden;
}

.hero-microcopy {
  margin-top: 14px;
  font-family: var(--font-tech);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.58);
}

.a-launch-note {
  margin: 26px 0 30px;
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.02);
  display: grid;
  gap: 8px;
}

.a-launch-note-label,
.support-side-note-label,
.join-meta span,
.supporter-modal__eyebrow,
.supporter-modal__section-label {
  font-family: var(--font-tech);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.a-launch-note-text {
  color: rgba(255,255,255,0.72);
}

.support-split {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.8fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: start;
  margin-top: 40px;
}

.support-column {
  display: grid;
  gap: 18px;
}

.perks-launch {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.support-side-note {
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  padding: 20px 22px;
  display: grid;
  gap: 10px;
}

.support-side-note p {
  color: rgba(255,255,255,0.76);
}

.launch-scope-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.collectors-cta {
  margin-top: 28px;
}

.join-meta {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  color: rgba(255,255,255,0.7);
}

.supporter-modal[hidden] {
  display: none;
}

.supporter-modal [hidden] {
  display: none !important;
}

.artist-login-modal[hidden],
.artist-apply-modal[hidden] {
  display: none;
}

.artist-login-modal {
  position: fixed;
  inset: 0;
  z-index: 2550;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.artist-login-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.artist-login-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5,5,5,0.8);
  backdrop-filter: blur(10px);
}

.artist-login-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(460px, 100%);
  padding: 26px 22px 22px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0;
  background: linear-gradient(180deg, rgba(9,10,16,0.98), rgba(10,10,14,0.94));
  box-shadow: 0 30px 100px rgba(0,0,0,0.55);
}

.artist-login-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.72);
  font-size: 1.2rem;
  line-height: 1;
}

.artist-login-modal__eyebrow,
.artist-login-field span {
  font-family: var(--font-tech);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  color: rgba(255,230,0,0.78);
  text-transform: uppercase;
}

.artist-login-modal__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.7rem);
  line-height: 0.95;
  margin-bottom: 10px;
}

.artist-login-modal__intro {
  margin-bottom: 22px;
  color: rgba(255,255,255,0.74);
}

.artist-login-form {
  display: grid;
  gap: 16px;
}

.artist-login-field {
  display: grid;
  gap: 8px;
}

.artist-login-field input {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  color: var(--white);
  padding: 14px 16px;
  font: inherit;
}

.artist-login-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.artist-login-submit {
  min-width: 128px;
}

.artist-login-link {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  color: rgba(255,255,255,0.84);
}

.artist-login-status {
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  color: rgba(255,255,255,0.82);
}

.artist-login-status.is-error {
  border-color: rgba(255, 72, 72, 0.55);
  color: rgba(255, 110, 110, 0.95);
}

.artist-apply-modal {
  position: fixed;
  inset: 0;
  z-index: 2600;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.artist-apply-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.artist-apply-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5,5,5,0.82);
  backdrop-filter: blur(10px);
}

.artist-apply-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  max-height: min(86vh, 820px);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: clamp(22px, 3vw, 36px);
  background: linear-gradient(180deg, rgba(17,17,17,0.98), rgba(10,10,10,0.98));
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 30px 100px rgba(0,0,0,0.55);
}

.artist-apply-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.03);
  font-size: 1.8rem;
  line-height: 1;
}

.artist-apply-modal__eyebrow,
.artist-apply-field span {
  font-family: var(--font-tech);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.artist-apply-modal__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  line-height: 0.95;
  margin: 10px 0 14px;
  text-transform: uppercase;
}

.artist-apply-modal__intro {
  margin-bottom: 18px;
  color: rgba(255,255,255,0.78);
}

.artist-apply-pending[hidden] {
  display: none;
}

.artist-apply-pending {
  margin-bottom: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  display: grid;
  gap: 10px;
}

.artist-apply-pending__eyebrow,
.artist-apply-pending__meta span {
  font-family: var(--font-tech);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.58);
}

.artist-apply-pending__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.8rem);
  line-height: 1;
  text-transform: uppercase;
}

.artist-apply-pending__copy {
  margin: 0;
  color: rgba(255,255,255,0.8);
}

.artist-apply-pending__meta {
  display: grid;
  gap: 6px;
}

.artist-apply-pending__meta strong {
  color: rgba(255,255,255,0.92);
  word-break: break-word;
}

.artist-apply-form__grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.artist-apply-field {
  display: grid;
  gap: 8px;
}

.artist-apply-field--full {
  grid-column: 1 / -1;
}

.artist-apply-field input,
.artist-apply-field textarea {
  width: 100%;
  padding: 14px 14px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.9);
  font-family: var(--font-tech);
  font-size: 0.9rem;
  outline: none;
}

.artist-apply-field textarea {
  resize: vertical;
  min-height: 112px;
}

.artist-apply-field input:focus,
.artist-apply-field textarea:focus {
  border-color: rgba(233,30,140,0.6);
  box-shadow: 0 0 0 2px rgba(233,30,140,0.12);
}

.artist-apply-field input.is-invalid,
.artist-apply-field textarea.is-invalid {
  border-color: rgba(255, 72, 72, 0.95) !important;
  box-shadow: 0 0 0 1px rgba(255, 72, 72, 0.35) inset;
}

.artist-apply-form__actions {
  margin-top: 18px;
  display: flex;
  justify-content: flex-start;
}

.artist-apply-form__result {
  margin-top: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.82);
}

.artist-apply-form__result.is-error {
  border-color: rgba(255, 72, 72, 0.55);
  color: rgba(255, 72, 72, 0.92);
}

@media (max-width: 720px) {
  .artist-apply-form__grid {
    grid-template-columns: 1fr;
  }

  .artist-apply-field--full {
    grid-column: auto;
  }
}

.supporter-modal {
  position: fixed;
  inset: 0;
  z-index: 2500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.supporter-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.supporter-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5,5,5,0.82);
  backdrop-filter: blur(10px);
}

.supporter-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: min(88vh, 980px);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: clamp(24px, 3.5vw, 44px);
  background: linear-gradient(180deg, rgba(17,17,17,0.98), rgba(10,10,10,0.98));
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 30px 100px rgba(0,0,0,0.55);
}

.supporter-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.03);
  font-size: 1.8rem;
  line-height: 1;
}

.supporter-modal__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 0.95;
  margin: 10px 0 16px;
  text-transform: uppercase;
}

.supporter-modal__intro {
  display: grid;
  gap: 10px;
  max-width: 740px;
  margin-bottom: 34px;
  color: rgba(255,255,255,0.78);
}

.supporter-modal__microcopy {
  font-family: var(--font-tech);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.56);
}

.supporter-modal__section + .supporter-modal__section {
  margin-top: 34px;
}

.supporter-details {
  border: 0;
}

.supporter-details > summary.supporter-modal__section-label {
  cursor: pointer;
  list-style: none;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: underline;
  text-decoration-color: var(--magenta);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.supporter-details > summary.supporter-modal__section-label::-webkit-details-marker {
  display: none;
}

.supporter-details[open] > summary.supporter-modal__section-label {
  margin-bottom: 14px;
}

.supporter-details > summary.supporter-modal__section-label::after {
  content: "▸";
  color: var(--magenta);
  font-size: 1.25em;
  line-height: 1;
  transform: rotate(0deg);
  transition: transform 0.18s ease;
}

.supporter-details[open] > summary.supporter-modal__section-label::after {
  transform: rotate(90deg);
}

.supporter-modal__highlight {
  color: var(--pink);
  font-weight: 700;
}

.supporter-wallet-row {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.supporter-wallet-pill {
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.03);
  font-family: var(--font-tech);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.76);
}

.supporter-selected-tier {
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.03);
  font-family: var(--font-tech);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.86);
}

.supporter-field input.is-invalid,
.supporter-field textarea.is-invalid,
.supporter-field select.is-invalid {
  border-color: rgba(255, 72, 72, 0.95) !important;
  box-shadow: 0 0 0 1px rgba(255, 72, 72, 0.35) inset;
}

.supporter-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.supporter-benefit {
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.02);
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
}

.supporter-tier-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.supporter-tier-card {
  text-align: left;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.02);
  min-height: 220px;
  padding: 18px;
  display: grid;
  align-content: start;
  gap: 12px;
  transition: transform 0.25s var(--ease), border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.supporter-tier-card:hover {
  transform: translateY(-3px);
  border-color: rgba(233,30,140,0.38);
}

.supporter-tier-card.is-selected {
  border-color: rgba(233,30,140,0.88);
  background: linear-gradient(180deg, rgba(233,30,140,0.13), rgba(255,255,255,0.03));
  box-shadow: 0 18px 45px rgba(233,30,140,0.12);
}

.supporter-tier-card--wide {
  grid-column: span 2;
  min-height: auto;
}

.supporter-tier-card__name {
  font-family: var(--font-brutal);
  font-size: 1.1rem;
  letter-spacing: 0.14em;
}

.supporter-tier-card__amount {
  font-family: var(--font-tech);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: var(--green);
  text-transform: uppercase;
}

.supporter-tier-card__copy {
  color: rgba(255,255,255,0.76);
  font-size: 0.95rem;
}

.supporter-allocation-list {
  display: grid;
  gap: 12px;
}

.supporter-allocation-item {
  display: grid;
  grid-template-columns: minmax(170px, 260px) 1fr;
  gap: 14px;
  align-items: center;
  color: rgba(255,255,255,0.78);
}

.supporter-allocation-bar {
  position: relative;
  display: block;
  width: 100%;
  height: 10px;
  background: rgba(255,255,255,0.08);
}

.supporter-allocation-bar i {
  display: block;
  height: 100%;
  background: var(--gradient-h);
}

.supporter-intent-form {
  display: grid;
  gap: 22px;
}

.supporter-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.supporter-field {
  display: grid;
  gap: 8px;
}

.supporter-field--wide {
  grid-column: span 2;
}

.supporter-field span {
  font-family: var(--font-tech);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
}

.supporter-field input,
.supporter-field select,
.supporter-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
  color: var(--off);
  font: inherit;
}

.supporter-field textarea {
  resize: vertical;
  min-height: 120px;
}

.supporter-field > div {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
  color: var(--off);
  word-break: break-word;
}

.supporter-checkout-mode {
  display: grid;
  gap: 22px;
}

.supporter-checkout {
  display: grid;
  gap: 22px;
  margin-top: 14px;
}

.supporter-trust-note {
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.02);
  color: rgba(255,255,255,0.72);
  display: grid;
  gap: 10px;
}

.supporter-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.supporter-secondary {
  color: var(--off);
}

.supporter-modal__result {
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,230,118,0.08);
  color: rgba(255,255,255,0.86);
}

.supporter-modal__result.is-error {
  background: rgba(255,36,66,0.08);
}

body.modal-open #cursor-dot {
  opacity: 0;
}

@media (min-width: 1025px) {
  .supporter-modal {
    padding: 28px;
  }
  .supporter-modal__dialog {
    width: min(960px, calc(100vw - 56px));
    max-height: calc(100vh - 56px);
    padding: 34px 34px 30px;
  }
  .supporter-benefits {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .supporter-tier-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .supporter-tier-card--wide {
    grid-column: span 4;
  }
}

@media (max-width: 1024px) and (min-width: 641px) {
  .supporter-modal {
    padding: 18px;
  }
  .supporter-modal__dialog {
    width: min(860px, calc(100vw - 36px));
    max-height: calc(100vh - 36px);
    padding: 28px 24px 24px;
  }
  .supporter-benefits,
  .supporter-tier-grid,
  .supporter-form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .supporter-tier-card--wide {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .artist-login-modal {
    padding: 10px;
  }

  .artist-login-modal__dialog {
    width: calc(100vw - 20px);
    padding: 24px 16px 18px;
  }

  .supporter-modal {
    padding: 8px;
  }
  .supporter-modal__dialog {
    width: calc(100vw - 12px);
    max-height: calc(100vh - 12px);
    padding: 22px 16px 20px;
  }
  .supporter-benefits,
  .supporter-tier-grid,
  .supporter-form-grid {
    grid-template-columns: 1fr;
  }
  .supporter-tier-card--wide,
  .supporter-field--wide {
    grid-column: span 1;
  }
  .hero-microcopy,
  .join-meta {
    gap: 10px;
  }
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

@media (max-width: 900px) {
  .support-split,
  .launch-scope-grid {
    grid-template-columns: 1fr;
  }
  .perks-launch {
    grid-template-columns: 1fr;
  }
  .supporter-allocation-item {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .anim-fade,
  .anim-slide-up,
  .anim-slide-left,
  .anim-slide-right,
  .anim-clip-reveal,
  .anim-flip {
    opacity: 1 !important;
    transform: none !important;
    clip-path: inset(0 0 0 0) !important;
  }
}
