/* ═══════════════════════════════════════
   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-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: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; }



/* ════════════ VISIBILITY LOGIC ════════════ */
html.is-mobile .desktop-only { display: none !important; }
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;
  padding: 16px 0; border-top: 1px solid rgba(255,255,255,0.06);
  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
   ═══════════════════════════════════════ */

/* ── TABLET & TOUCH LAPTOP (≤1024px) ── */
@media (max-width: 1024px), (max-width: 1366px) and (hover: none) {
  :root {
    --pad: clamp(72px, 9vh, 112px);
  }

  #main-nav { padding: 16px 24px; }
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }

  .mobile-menu {
    justify-content: flex-start;
    gap: 24px;
    overflow-y: auto;
    padding: max(96px, env(safe-area-inset-top)) 24px max(32px, env(safe-area-inset-bottom));
  }
  .mobile-link {
    width: min(100%, 720px);
    font-size: clamp(2.25rem, 5vw, 4rem);
  }
  .mobile-cta {
    width: min(100%, 720px);
    margin-top: 12px;
    text-align: center;
  }

  .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;
  }

  .section-manifesto,
  .section-token,
  .section-artists,
  .section-collectors,
  .section-migration,
  .section-support,
  .section-roadmap,
  .section-faq {
    overflow: clip;
  }

  .mag-spread { grid-template-columns: 1fr; gap: 28px; }
  .mag-col-text,
  .token-info,
  .artists-text,
  .coll-text,
  .migration-text {
    max-width: 44rem;
  }
  .mag-headline { font-size: clamp(2.5rem, 10vw, 3.5rem); margin-bottom: 16px; }
  .mag-body { max-width: 42rem; }
  .mag-col-img { max-width: 640px; }

  .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; }
  .allowed-strip { width: 100%; }

  .collage-break { grid-template-columns: repeat(2, 1fr); height: clamp(180px, 30vh, 280px); }
  .collage-overlay-text { font-size: clamp(1rem, 4vw, 1.8rem); }

  .token-grid { grid-template-columns: 1fr; text-align: center; gap: 28px; }
  .token-circle { width: 180px; height: 180px; margin-bottom: 20px; }
  .token-title { font-size: clamp(2rem, 7vw, 2.8rem); }
  .token-desc { max-width: 38rem; margin-inline: auto; }
  .token-points { text-align: left; max-width: 32rem; margin-inline: auto; gap: 10px; }
  .ti-cards { grid-template-columns: 1fr; }
  .ti-card { padding: 18px 20px; }

  .artists-collage-layout { grid-template-columns: 1fr; gap: 28px; }
  .a-title { font-size: clamp(2.2rem, 9vw, 3rem); }
  .a-highlight-row { flex-direction: column; }
  .a-highlight-img { width: 100%; height: 180px; }
  .a-highlight { padding: 22px 24px; }
  .a-features { margin-bottom: 24px; }
  .artists-imgs { gap: 3px; max-width: 640px; }

  .collectors-split { grid-template-columns: 1fr; gap: 28px; }
  .coll-img { max-height: 50vh; }
  .c-title { font-size: clamp(2.2rem, 9vw, 3rem); }
  .c-subtitle { max-width: 36rem; }
  .c-point { font-size: 0.95rem; padding: 14px 0; line-height: 1.65; }

  .migration-spread { grid-template-columns: 1fr; gap: 28px; }
  .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; }

  .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; gap: 16px; }
  .s-funding-item { justify-content: flex-start; 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; }
  .support-center,
  .s-funding-block,
  .s-story-block,
  .s-og-banner { max-width: 720px; margin-inline: auto; }

  .rm-grid, .rm-grid-6 { grid-template-columns: repeat(2, 1fr); }
  .rm-title { font-size: clamp(2.2rem, 9vw, 3rem); margin-bottom: 32px; }
  .rm-card { padding: 22px; }
  .rm-card h3 { font-size: 0.95rem; }

  .faq-title { font-size: clamp(2.2rem, 9vw, 3rem); margin-bottom: 32px; }
  .faq-q { padding: 18px 0; font-size: 1rem; }
  .faq-list { max-width: 760px; }

  .join-title { font-size: clamp(4rem, 16vw, 7rem); }
  .join-sub { font-size: 0.85rem; margin-bottom: 28px; max-width: 34rem; margin-inline: auto; }
  .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-row { flex-direction: column; gap: 28px; }
  .footer-links { gap: 16px; }
  .footer-meta { flex-direction: column; gap: 20px; }
  .footer-contract { flex-direction: column; gap: 6px; }
}

/* ── PHONE (≤767px) ── */
@media (max-width: 767px) {
  :root {
    --pad: clamp(48px, 8vh, 84px);
  }

  #main-nav { padding: 14px 16px; }

  .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;
  }

  .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; }
  .ban-strip-inner { gap: 22px; }
  .allowed-strip { padding: 14px 16px; }
  .token-desc { max-width: none; }
  .token-points { max-width: none; }
  .tp { line-height: 1.6; }
  .a-highlight { padding: 18px 18px 18px 20px; }
  .a-highlight-row { gap: 14px; margin-bottom: 18px; }
  .a-cta-text { margin-bottom: 16px; line-height: 1.65; }
  .a-feature { gap: 12px; line-height: 1.6; }
  .artists-imgs { max-width: none; }
  .c-subtitle,
  .mig-body,
  .join-sub { max-width: none; }
  .c-point { line-height: 1.65; }
  .mig-options { gap: 10px; }
  .mig-token-morph { padding: 22px; }
  .s-title,
  .rm-title,
  .faq-title { margin-bottom: 24px; }
  .s-story-block { margin-bottom: 28px; }
  .s-funding-block,
  .support-center { margin-bottom: 32px; }
  .perks { gap: 16px; margin-bottom: 28px; }
  .perk { width: 100%; justify-content: center; }
  .rm-card { padding: 18px; }
  .faq-q { line-height: 1.5; }
  .section-join { padding: clamp(72px, 14vh, 120px) 0; }

  .rm-grid, .rm-grid-6 { grid-template-columns: 1fr; }
}

/* ── 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; }
  .artists-imgs { grid-template-columns: 1fr 1fr; }
  .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; }

  .rm-grid, .rm-grid-6 { grid-template-columns: 1fr; }
}

/* ── 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; }
}

@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; }
  .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;
  }
  .ticker { animation: none; }
  body::after { display: none; }
}
