/* ── RESET ── */
  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
  html { overflow-x: hidden; scroll-behavior: smooth; }

  /* ── BASE ── */
  body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    min-height: 100vh;
    background-color: #f5f0ea;
    background-image:
      /* Noise texture for depth */
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E"),
      /* Pink ambient orbs */
      radial-gradient(ellipse 90% 55% at 15% -5%,  rgba(242,114,192,0.16) 0%, transparent 65%),
      radial-gradient(ellipse 65% 50% at 88% 12%,  rgba(242,114,192,0.09) 0%, transparent 55%),
      radial-gradient(ellipse 75% 60% at 50% 105%, rgba(242,114,192,0.11) 0%, transparent 60%),
      radial-gradient(ellipse 40% 30% at 70% 50%,  rgba(255,220,245,0.08) 0%, transparent 50%);
    background-attachment: fixed;
    background-size: 400px 400px, cover, cover, cover, cover;
  }

  /* Grain texture overlay */
  body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.028;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 200px 200px;
  }

  /* ── GLASS UTILITY ── */
  .glass {
    background: rgba(255,255,255,0.62);
    backdrop-filter: blur(28px) saturate(200%);
    -webkit-backdrop-filter: blur(28px) saturate(200%);
    border: 1px solid rgba(255,255,255,0.75);
    box-shadow:
      0 2px 32px rgba(0,0,0,0.06),
      0 1px 0 rgba(255,255,255,0.9) inset;
  }
  .glass-dark {
    background: rgba(26,20,18,0.72);
    backdrop-filter: blur(32px) saturate(160%);
    -webkit-backdrop-filter: blur(32px) saturate(160%);
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: 0 2px 40px rgba(0,0,0,0.18);
  }
  .glass-pink {
    background: rgba(242,114,192,0.14);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(242,114,192,0.35);
    box-shadow:
      0 4px 40px rgba(242,114,192,0.12),
      0 1px 0 rgba(255,255,255,0.8) inset;
  }

  /* ── ANIMATIONS ── */
  @keyframes shimmer {
    0%   { background-position: -600px 0; }
    100% { background-position:  600px 0; }
  }
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes marqueeScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }

  .fade-up { opacity: 0; animation: fadeUp 0.7s cubic-bezier(.22,1,.36,1) forwards; }
  .fade-up.delay-1 { animation-delay: 0.08s; }
  .fade-up.delay-2 { animation-delay: 0.18s; }
  .fade-up.delay-3 { animation-delay: 0.28s; }
  .fade-up.delay-4 { animation-delay: 0.38s; }
  .fade-up.delay-5 { animation-delay: 0.48s; }

  .reveal {
    opacity: 0; transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(.22,1,.36,1), transform 0.7s cubic-bezier(.22,1,.36,1);
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 0 40px;
    height: 64px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(250,247,244,0.72);
    backdrop-filter: blur(32px) saturate(200%);
    -webkit-backdrop-filter: blur(32px) saturate(200%);
    border-bottom: 1px solid rgba(255,255,255,0.6);
    box-shadow: 0 1px 0 rgba(0,0,0,0.05);
  }
  .nav-logo {
    font-family: 'Unbounded', sans-serif;
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: .18em;
    color: #1a1412;
    text-decoration: none;
    line-height: 1;
  }
  .nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
  }
  .nav-sep {
    width: 1px;
    height: 14px;
    background: rgba(26,20,18,.15);
    flex-shrink: 0;
  }
  .nav-link {
    font-family: 'Inter', sans-serif;
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: .04em;
    color: rgba(26,20,18,.5);
    text-decoration: none;
    transition: color .2s;
  }
  .nav-link:hover { color: #1a1412; }
  .nav-link-cta {
    background: rgba(242,114,192,0.12);
    border: 1px solid rgba(242,114,192,0.3);
    backdrop-filter: blur(12px);
    padding: 9px 20px;
    border-radius: 100px;
    font-family: 'Inter', sans-serif;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .04em;
    color: #c23e95;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
  }
  .nav-link-cta:hover {
    background: rgba(242,114,192,0.22);
    box-shadow: 0 2px 16px rgba(242,114,192,0.2);
  }

  /* ── MAIN LAYOUT ── */
  main {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 24px;
  }

  /* ── ABOUT CARD ── */
  .about-card {
    width: 100%;
    max-width: 1400px;
    margin-top: 88px;
    border-radius: 32px;
    color: #f5f0eb;
    background: rgba(18,13,11,0.80);
    backdrop-filter: blur(48px) saturate(180%);
    -webkit-backdrop-filter: blur(48px) saturate(180%);
    border: 1px solid rgba(255,255,255,0.07);
    box-shadow: 0 12px 80px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
    padding: 64px 72px 44px;
  }
  .about-card::after {
    content: '';
    position: absolute;
    top: -120px; right: -80px;
    width: 500px; height: 500px;
    background: radial-gradient(ellipse, rgba(242,114,192,0.09) 0%, transparent 60%);
    pointer-events: none;
  }
  .about-top-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 48px;
    margin-bottom: 36px;
  }
  .about-headline {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.9rem);
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -.03em;
    color: #f5f0eb;
    flex: 1;
  }
  .about-headline em { color: #f272c0; font-style: normal; }
  .about-avatar {
    flex-shrink: 0;
    width: clamp(130px, 13vw, 210px);
    height: clamp(130px, 13vw, 210px);
    margin-top: 4px;
  }
  .about-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 10%;
    border-radius: 44% 56% 62% 38% / 48% 42% 58% 52%;
    border: 2.5px solid rgba(242,114,192,0.55);
    box-shadow: 0 0 0 6px rgba(242,114,192,0.10), 0 8px 40px rgba(0,0,0,0.25);
    display: block;
  }
  .about-rule {
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.07);
    margin-bottom: 36px;
  }
  .about-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
  }
  .about-col-label {
    font-family: 'Inter', sans-serif;
    font-size: .55rem;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(242,114,192,0.7);
    margin-bottom: 10px;
  }
  .about-bottom p {
    font-family: 'Inter', sans-serif;
    font-size: .86rem;
    line-height: 1.9;
    color: rgba(240,235,227,.65);
    font-weight: 400;
    margin: 0;
  }
  .about-bottom p strong { color: rgba(240,235,227,.92); font-weight: 600; }
  .about-bottom p em { color: rgba(242,114,192,.85); font-style: normal; }

  /* ── CONVEYOR BELT ── */
  .conveyor-scene {
    width: 100%;
    max-width: 1400px;
    margin-top: 28px;
    perspective: 900px;
    perspective-origin: 50% 30%;
  }
  .conveyor-stage {
    transform: rotateX(28deg) scaleY(0.92);
    transform-origin: center top;
    transform-style: preserve-3d;
    position: relative;
    padding: 28px 0;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(24px) saturate(160%);
    -webkit-backdrop-filter: blur(24px) saturate(160%);
    border: 1px solid rgba(255,255,255,0.55);
    border-radius: 20px;
    box-shadow:
      0 12px 48px rgba(0,0,0,0.09),
      0 1px 0 rgba(255,255,255,0.85) inset,
      0 -1px 0 rgba(0,0,0,0.04) inset;
    overflow: hidden;
    will-change: transform;
  }
  /* Fade overlays — sit on top of content, preserve border */
  .conveyor-stage::before,
  .conveyor-stage::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 110px;
    z-index: 10;
    pointer-events: none;
    border-radius: inherit;
  }
  .conveyor-stage::before {
    left: 0;
    background: linear-gradient(to right,
      rgba(245,240,234,0.96) 0%,
      rgba(245,240,234,0.0) 100%);
  }
  .conveyor-stage::after {
    right: 0;
    background: linear-gradient(to left,
      rgba(245,240,234,0.96) 0%,
      rgba(245,240,234,0.0) 100%);
  }
  @media (prefers-reduced-motion: reduce) {
    .conveyor-track { animation: none !important; }
    .fadeUp, .reveal { animation: none !important; opacity: 1 !important; transform: none !important; }
  }
  @keyframes conveyorScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }
  .conveyor-track {
    display: flex;
    gap: 14px;
    white-space: nowrap;
    animation: conveyorScroll 64s linear infinite;
    will-change: transform;
    padding: 0 14px;
    width: max-content;
  }
  /* no pause on hover for performance */
  .nft-chip {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    flex-shrink: 0;
    text-decoration: none;
    cursor: default;
    pointer-events: none;
  }
  .nft-chip-img {
    width: 88px;
    height: 88px;
    border-radius: 14px;
    object-fit: cover;
    border: 1.5px solid rgba(255,255,255,0.7);
    background: rgba(240,235,227,0.5);
    box-shadow: 0 4px 16px rgba(0,0,0,0.10), 0 1px 0 rgba(255,255,255,0.9) inset;
    transition: transform .25s cubic-bezier(.22,1,.36,1), box-shadow .25s;
    image-rendering: pixelated;
  }

  .nft-chip-label {
    font-family: 'Inter', sans-serif;
    font-size: .5rem;
    font-weight: 600;
    letter-spacing: .06em;
    color: rgba(26,20,18,.45);
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    max-width: 88px;
    text-overflow: ellipsis;
    text-align: center;
  }
  .conveyor-loading {
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: .65rem;
    color: rgba(26,20,18,.3);
    padding: 40px 0;
    letter-spacing: .08em;
  }
  /* About 2-col */
  .about-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 48px;
    margin-top: 6px;
  }
  .about-cols p { margin-top: 0 !important; }
  @media (max-width: 800px) {
    .about-cols { grid-template-columns: 1fr; gap: 14px; }
    .conveyor-scene { display: none; }
  }

  /* ── BOTTOM ROW ── */
  .bottom-row {
    width: 100%;
    max-width: 1400px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 16px;
    align-items: start;
  }
  .bottom-left {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  /* ── HERO CARD ── */
  .hero-card {
    width: 100%;
    border-radius: 28px;
    padding: 48px 36px 32px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(145deg, rgba(242,114,192,0.92), rgba(228,80,172,0.88));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.45);
    box-shadow:
      0 8px 48px rgba(242,114,192,0.28),
      0 2px 0 rgba(255,255,255,0.45) inset,
      0 -1px 0 rgba(0,0,0,0.06) inset;
  }
  .hero-card::before {
    content: '';
    position: absolute;
    top: -30%; left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 60%;
    background: radial-gradient(ellipse, rgba(255,255,255,0.22) 0%, transparent 70%);
    pointer-events: none;
  }

  .hero-markets {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 22px;
    position: relative;
    z-index: 2;
  }
  .hero-mkt-btn {
    background: rgba(255,255,255,0.88);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.95);
    border-radius: 100px;
    padding: 14px 36px;
    font-family: 'Inter', sans-serif;
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .04em;
    color: #1a1412;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform .2s, box-shadow .2s, background .2s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12), 0 1px 0 rgba(255,255,255,1) inset;
  }
  .hero-mkt-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.15), 0 1px 0 rgba(255,255,255,1) inset;
    background: rgba(255,255,255,0.96);
  }
  .hero-tagline {
    font-family: 'Inter', sans-serif;
    font-size: .62rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.82);
    font-weight: 600;
    margin-bottom: 0;
    text-align: center;
    text-shadow: 0 1px 8px rgba(0,0,0,0.15);
  }

  /* ── COLLECTION CARDS ── */
  .coll-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 18px 0 0;
    width: 100%;
  }
  .coll-card {
    flex: 1;
    background: rgba(255,255,255,0.72);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255,255,255,0.9);
    border-radius: 18px;
    padding: 14px 12px 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06), 0 1px 0 rgba(255,255,255,1) inset;
    display: flex;
    flex-direction: column;
    gap: 9px;
    transition: transform .3s cubic-bezier(.22,1,.36,1), box-shadow .3s;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
  }
  .coll-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(242,114,192,0.15), 0 1px 0 rgba(255,255,255,1) inset;
    border-color: rgba(242,114,192,0.3);
  }
  .coll-card-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 12px;
    background: rgba(240,235,227,0.6);
    border: 1px solid rgba(0,0,0,0.07);
  }
  .coll-card-img[src=""] { opacity: 0; }
  .coll-card-name {
    font-family: 'Unbounded', sans-serif;
    font-size: 0.68rem;
    font-weight: 900;
    color: #1a1412;
    text-transform: uppercase;
    letter-spacing: .04em;
    padding: 10px 0 8px;
    border-top: 1px solid rgba(0,0,0,0.07);
    text-align: center;
  }
  .coll-card-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  .coll-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
  }
  .coll-stat-val {
    font-family: 'Unbounded', sans-serif;
    font-size: 0.78rem;
    font-weight: 900;
    color: #1a1412;
    line-height: 1.2;
    white-space: nowrap;
    letter-spacing: -.02em;
  }
  .coll-stat-key {
    font-size: 0.5rem;
    color: rgba(26,20,18,.62);
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
  }
  /* ── BENTO STATS ── */
  .stats {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1.7fr 1fr;
    gap: 10px;
  }
  .stat {
    background: rgba(255,255,255,0.62);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255,255,255,0.82);
    border-radius: 18px;
    padding: 22px 16px;
    text-align: center;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05), 0 1px 0 rgba(255,255,255,.95) inset;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform .25s cubic-bezier(.22,1,.36,1);
  }
  .stat:hover { transform: translateY(-2px); }
  .stat:nth-child(3) {
    background: linear-gradient(135deg, rgba(242,114,192,0.2), rgba(242,114,192,0.08));
    border-color: rgba(242,114,192,0.38);
    box-shadow: 0 4px 28px rgba(242,114,192,0.12), 0 1px 0 rgba(255,255,255,.8) inset;
  }
  .stat:nth-child(3) .stat-num { color: #d44fa8; font-size: 1.9rem; }
  .stat-num {
    font-family: 'Unbounded', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1412;
    display: block;
    margin-bottom: 5px;
    letter-spacing: -.02em;
  }
  .stat-label {
    font-size: .52rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(26,20,18,.55);
    font-weight: 500;
    font-family: 'Inter', sans-serif;
  }

  /* ── ACTIVITY COL ── */
  .col-box {
    background: rgba(255,255,255,0.55);
    backdrop-filter: blur(40px) saturate(200%);
    -webkit-backdrop-filter: blur(40px) saturate(200%);
    border: 1px solid rgba(255,255,255,0.75);
    border-radius: 28px;
    padding: 28px 22px;
    box-shadow:
      0 4px 40px rgba(0,0,0,0.06),
      0 1px 0 rgba(255,255,255,1) inset,
      0 -1px 0 rgba(0,0,0,0.02) inset;
    display: flex;
    flex-direction: column;
  }
  .col-box-title {
    font-family: 'Inter', sans-serif;
    font-size: .6rem;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(26,20,18,.35);
    margin-bottom: 14px;
    flex-shrink: 0;
  }
  #activityCol { overflow: hidden; }

  /* ── ACTIVITY FEED ── */
  .activity-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    overflow-y: auto;
    flex: 1;
    padding-right: 2px;
  }
  .activity-list::-webkit-scrollbar { width: 3px; }
  .activity-list::-webkit-scrollbar-track { background: transparent; }
  .activity-list::-webkit-scrollbar-thumb { background: rgba(242,114,192,0.4); border-radius: 2px; }
  .activity-loading {
    font-family: 'Inter', sans-serif;
    font-size: .65rem;
    color: rgba(26,20,18,.3);
    padding: 24px 0;
    text-align: center;
    letter-spacing: .08em;
  }
  .activity-row {
    background: rgba(255,255,255,0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.8);
    border-radius: 14px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #1a1412;
    transition: background .2s, transform .2s, box-shadow .2s;
    box-shadow: 0 1px 8px rgba(0,0,0,0.04);
  }
  .activity-row:hover {
    background: rgba(242,114,192,0.08);
    border-color: rgba(242,114,192,0.3);
    box-shadow: 0 4px 20px rgba(242,114,192,0.1);
  }
  .activity-thumb {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    object-fit: cover;
    border: 1px solid rgba(0,0,0,0.07);
    background: rgba(240,235,227,0.6);
    flex-shrink: 0;
    image-rendering: pixelated;
  }
  .activity-info { flex: 1; min-width: 0; }
  .activity-name {
    font-family: 'Unbounded', sans-serif;
    font-size: .64rem;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: .01em;
  }
  .activity-meta {
    font-family: 'Inter', sans-serif;
    font-size: .56rem;
    color: rgba(26,20,18,.52);
    margin-top: 3px;
    font-weight: 400;
  }
  .activity-badge {
    font-family: 'Inter', sans-serif;
    font-size: .58rem;
    font-weight: 600;
    padding: 5px 11px;
    border-radius: 100px;
    white-space: nowrap;
    flex-shrink: 0;
    letter-spacing: .02em;
  }
  .badge-sale {
    background: linear-gradient(135deg, rgba(242,114,192,0.2), rgba(242,114,192,0.1));
    border: 1px solid rgba(242,114,192,0.4);
    color: #c23e95;
  }

  /* ── FOOTER ── */
  footer { width: 100%; }
  .footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding: 32px 0 52px;
    border-top: 1px solid rgba(26,20,18,0.08);
    margin-top: 40px;
  }
  .footer-left { display: flex; flex-direction: column; gap: 5px; }
  .footer-logo {
    font-family: 'Unbounded', sans-serif;
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: .15em;
    color: #1a1412;
  }
  .footer-sub {
    font-size: .57rem;
    letter-spacing: .1em;
    color: rgba(26,20,18,.35);
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
  }
  .footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
  .footer-links a {
    font-size: .63rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(26,20,18,.4);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    transition: color .2s;
  }
  .footer-links a:hover { color: #d44fa8; }
  .footer-copy {
    font-size: .55rem;
    letter-spacing: .04em;
    color: rgba(26,20,18,.62);
    font-family: 'Inter', sans-serif;
  }



  /* ── MOBILE ── */
  @media (max-width: 640px) {
    nav { padding: 0 20px; height: 56px; }
    main { padding: 0 14px; }
    .about-card { margin-top: 72px; padding: 36px 28px 32px; border-radius: 24px; }
    .about-top-row { flex-direction: column-reverse; gap: 20px; margin-bottom: 28px; }
    .about-avatar { width: 96px; height: 96px; }
    .about-headline { font-size: 1.4rem; }
    .about-bottom { grid-template-columns: 1fr; gap: 24px; }
    .bottom-row { grid-template-columns: 1fr; }
    .hero-card { padding: 32px 18px 24px; border-radius: 22px; }
    .coll-cards { grid-template-columns: 1fr; gap: 8px; }
    .coll-card {
      flex-direction: row;
      align-items: center;
      gap: 12px;
      padding: 12px 14px;
    }
    .coll-card-img { width: 50px; height: 50px; flex-shrink: 0; aspect-ratio: 1; }
    .coll-card-info { flex: 1; min-width: 0; }
    .coll-card-name {
      font-size: 0.68rem;
      text-align: left;
      padding: 0;
      border-top: none;
      margin-bottom: 4px;
    }
    .coll-card-stats { justify-content: flex-start; gap: 12px; }
    .coll-stat { align-items: flex-start; }
    .stats { grid-template-columns: 1fr 1fr; gap: 8px; }
    .stat:nth-child(3) { grid-column: 1 / -1; }
    .stat:nth-child(4) { grid-column: 1 / -1; }
    .stat { padding: 18px 12px; }
    .stat-num { font-size: 1.2rem; }
    #activityCol { height: auto !important; max-height: 340px; }
    .col-box { border-radius: 22px; }
    .conveyor-scene { margin-top: 18px; }
    .footer-inner { flex-direction: column; align-items: flex-start; gap: 14px; }
    .footer-copy { order: 3; }
  }

  /* ── 1/1 COLLAGE SECTION ── */
  .collage-section {
    width: 100%;
    max-width: 1400px;
    margin-top: 48px;
  }
  .collage-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 20px;
  }
  .collage-label {
    font-family: 'Inter', sans-serif;
    font-size: .6rem;
    font-weight: 500;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(26,20,18,.3);
  }
  .collage-link {
    font-family: 'Inter', sans-serif;
    font-size: .6rem;
    color: rgba(26,20,18,.3);
    text-decoration: none;
    letter-spacing: .08em;
    transition: color .2s;
  }
  .collage-link:hover { color: rgba(26,20,18,.65); }

  .collage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: auto;
    gap: 4px;
    align-items: start;
    border-radius: 20px;
    overflow: hidden;
  }
  .ci {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: #fff;
    display: block;
  }
  .ci img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform .6s cubic-bezier(.22,1,.36,1), filter .3s;
  }
  .ci:hover img { transform: scale(1.03); filter: brightness(.93); }
  .ci-label {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 36px 12px 10px;
    background: linear-gradient(to top, rgba(255,255,255,.9) 0%, transparent 100%);
    font-family: 'Inter', sans-serif;
    font-size: .44rem;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(26,20,18,.55);
    opacity: 0;
    transition: opacity .28s;
    pointer-events: none;
  }
  .ci:hover .ci-label { opacity: 1; }

  /* one item spans 2 cols to break rhythm */
  .ci-wide { grid-column: span 2; }

  @media (max-width: 860px) {
    .collage-grid { grid-template-columns: 1fr 1fr 1fr; border-radius: 16px; }
    .ci-wide { grid-column: span 1; }
  }
  @media (max-width: 520px) {
    .collage-grid { grid-template-columns: 1fr 1fr; border-radius: 12px; gap: 3px; }
    .collage-section { margin-top: 28px; }
  }

    /* ── MODAL ── */
  .modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(26,20,18,0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    align-items: center;
    justify-content: center;
    padding: 24px;
  }
  .modal-overlay.open { display: flex; }
  .modal-box {
    background: #faf9f8;
    border: none;
    border-radius: 28px;
    width: 100%;
    max-width: 960px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 40px 100px rgba(0,0,0,0.4), 0 0 0 1px rgba(0,0,0,0.06);
    overflow: hidden;
  }
  .modal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 32px 24px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    flex-shrink: 0;
    background: #fff;
  }
  .modal-title {
    font-family: 'Inter', sans-serif;
    font-size: .95rem;
    font-weight: 600;
    color: rgba(26,20,18,.85);
    letter-spacing: -.01em;
  }
  .modal-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: .58rem;
    color: rgba(26,20,18,.3);
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-top: 4px;
  }
  .modal-close {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: rgba(0,0,0,0.06);
    border: none;
    color: rgba(26,20,18,.4);
    font-size: .9rem;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background .2s, color .2s;
    flex-shrink: 0;
  }
  .modal-close:hover { background: rgba(0,0,0,0.1); color: rgba(26,20,18,.8); }
  .modal-body {
    overflow-y: auto;
    padding: 28px 32px 32px;
    flex: 1;
    background: #faf9f8;
    scrollbar-width: thin;
    scrollbar-color: rgba(0,0,0,0.1) transparent;
  }
  .modal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
  }
  .modal-nft {
    background: #fff;
    border: none;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform .3s cubic-bezier(.22,1,.36,1), box-shadow .3s;
  }
  .modal-nft:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  }
  .modal-nft-img-wrap {
    width: 100%;
    height: 160px;
    background: #fff;
    padding: 8%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .modal-nft img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
  }
  .modal-nft-name {
    font-family: 'Inter', sans-serif;
    font-size: .55rem;
    font-weight: 400;
    color: rgba(26,20,18,.4);
    padding: 8px 12px 10px;
    letter-spacing: .03em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    border-top: 1px solid rgba(0,0,0,0.04);
  }
  .modal-loading {
    text-align: center;
    padding: 60px 0;
    font-family: 'Inter', sans-serif;
    font-size: .65rem;
    color: rgba(26,20,18,.2);
    letter-spacing: .14em;
    text-transform: uppercase;
  }
  .modal-opensea-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 1px solid rgba(0,0,0,0.12);
    color: rgba(26,20,18,.45);
    font-family: 'Inter', sans-serif;
    font-size: .58rem;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 9px 18px;
    border-radius: 20px;
    transition: border-color .2s, color .2s;
    margin-top: 24px;
  }
  .modal-opensea-btn:hover { border-color: rgba(0,0,0,0.25); color: rgba(26,20,18,.7); }
  @media (max-width: 640px) {
    .modal-box { border-radius: 20px; max-height: 92vh; }
    .modal-head { padding: 18px 20px 16px; }
    .modal-body { padding: 16px 16px 20px; }
    .modal-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 8px; }
  }


  /* ── MOBILE NAV ── */
  .nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px; height: 36px;
    background: none; border: none;
    cursor: pointer; padding: 6px;
    border-radius: 8px;
    transition: background .2s;
  }
  .nav-hamburger:hover { background: rgba(26,20,18,.06); }
  .nav-hamburger span {
    display: block;
    width: 18px; height: 1.5px;
    background: var(--ink, rgba(26,20,18,.7));
    border-radius: 2px;
    transition: transform .25s cubic-bezier(.22,1,.36,1), opacity .2s;
    transform-origin: center;
  }
  .nav-hamburger.open span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .nav-hamburger.open span:last-child  { transform: translateY(-3.5px) rotate(-45deg); }

  .nav-mobile-menu {
    display: none;
    position: fixed;
    top: 56px; left: 0; right: 0;
    background: rgba(245,240,234,.97);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(26,20,18,.07);
    padding: 8px 0 12px;
    z-index: 99;
    flex-direction: column;
    transform: translateY(-8px);
    opacity: 0;
    transition: transform .28s cubic-bezier(.22,1,.36,1), opacity .22s;
  }
  .nav-mobile-menu.open {
    transform: translateY(0);
    opacity: 1;
  }
  .nmm-link {
    display: block;
    padding: 13px 28px;
    font-family: 'Inter', sans-serif;
    font-size: .78rem; font-weight: 500;
    color: rgba(26,20,18,.6);
    text-decoration: none;
    letter-spacing: .04em;
    transition: color .15s;
    border-bottom: 1px solid rgba(26,20,18,.05);
  }
  .nmm-link:last-child { border-bottom: none; }
  .nmm-link:hover { color: rgba(26,20,18,.9); }
  .nmm-pink { color: #f272c0 !important; }
  .nmm-pink:hover { color: #d44fa8 !important; }

  @media (max-width: 640px) {
    .nav-hamburger { display: flex; }
    .nav-links      { display: none; }
    .nav-mobile-menu { display: flex; }
  }

  /* ── NEW DROP CARD ── */
  @keyframes dropPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.7); }
    50%      { box-shadow: 0 0 0 8px rgba(255,255,255,0); }
  }
  @keyframes dropPulseLive {
    0%, 100% { box-shadow: 0 0 0 0 rgba(47,191,113,0.55); }
    50%      { box-shadow: 0 0 0 9px rgba(47,191,113,0); }
  }

  .drop-card {
    width: 100%;
    max-width: 1400px;
    margin: 88px 0 0;
    display: grid;
    grid-template-columns: 240px 1fr auto;
    align-items: center;
    gap: 40px;
    padding: 40px 44px;
    border-radius: 32px;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
    /* Та же заливка, что у розовой карточки ниже: самый сильный акцент,
       который есть на сайте. Светлое стекло здесь терялось на фоне
       большого тёмного блока about. */
    background: linear-gradient(145deg, rgba(242,114,192,0.94), rgba(228,80,172,0.90));
    border: 1px solid rgba(255,255,255,0.45);
    box-shadow:
      0 14px 64px rgba(242,114,192,0.34),
      0 2px 0 rgba(255,255,255,0.45) inset,
      0 -1px 0 rgba(0,0,0,0.06) inset;
    transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s;
  }
  /* дроп идёт первым блоком, поэтому отступ сверху у about снимаем */
  .drop-card + .about-card { margin-top: 16px; }

  .drop-card::before {
    content: '';
    position: absolute;
    top: -40%; left: 50%;
    transform: translateX(-50%);
    width: 70%; height: 90%;
    background: radial-gradient(ellipse, rgba(255,255,255,0.20) 0%, transparent 70%);
    pointer-events: none;
  }
  .drop-card:hover {
    transform: translateY(-5px);
    box-shadow:
      0 22px 76px rgba(242,114,192,0.44),
      0 2px 0 rgba(255,255,255,0.55) inset;
  }

  .drop-art {
    position: relative;
    z-index: 2;
    aspect-ratio: 1;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.55);
    background: rgba(255,255,255,0.25);
    box-shadow: 0 8px 32px rgba(0,0,0,0.14);
  }
  .drop-art img { width: 100%; height: 100%; object-fit: cover; display: block; }

  .drop-body { position: relative; z-index: 2; min-width: 0; }
  .drop-badge-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    flex-wrap: wrap;
  }
  .drop-badge {
    display: inline-block;
    background: rgba(255,255,255,0.96);
    color: #d44fa8;
    font-family: 'Inter', sans-serif;
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 100px;
    animation: dropPulse 2.6s ease-out infinite;
  }
  .drop-name {
    font-family: 'Unbounded', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -.02em;
    line-height: 1.05;
    margin-bottom: 12px;
    text-shadow: 0 2px 16px rgba(0,0,0,0.14);
  }
  .drop-text {
    font-family: 'Inter', sans-serif;
    font-size: .92rem;
    line-height: 1.55;
    color: rgba(255,255,255,0.88);
    max-width: 56ch;
    margin-bottom: 20px;
  }
  .drop-meta { display: flex; gap: 32px; flex-wrap: wrap; }
  .drop-meta-item { display: flex; flex-direction: column; gap: 3px; }
  .drop-meta-val {
    font-family: 'Unbounded', sans-serif;
    font-size: 1rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -.02em;
  }
  .drop-meta-key {
    font-family: 'Inter', sans-serif;
    font-size: .52rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.92);
    font-weight: 600;
  }

  /* ── ОБРАТНЫЙ ОТСЧЁТ ── */
  .drop-countdown { display: flex; gap: 10px; margin-top: 22px; }
  .drop-cd-cell {
    min-width: 76px;
    padding: 12px 12px;
    border-radius: 18px;
    text-align: center;
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(255,255,255,0.95);
    box-shadow: 0 4px 18px rgba(0,0,0,0.10), 0 1px 0 rgba(255,255,255,1) inset;
  }
  .drop-cd-val {
    display: block;
    font-family: 'Unbounded', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: #1a1412;
    line-height: 1.1;
    letter-spacing: -.04em;
    font-variant-numeric: tabular-nums;
  }
  .drop-cd-key {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: .48rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(26,20,18,.40);
    font-weight: 600;
    margin-top: 4px;
  }

  /* Точная дата под отсчётом. Время нью-йоркское, автор там, а не в Азии. */
  .drop-when {
    margin-top: 12px;
    font-family: 'Inter', sans-serif;
    font-size: .68rem;
    letter-spacing: .06em;
    color: rgba(255,255,255,0.88);
    font-weight: 600;
  }

  /* Полоса прогресса, показывается когда минт уже идёт */
  .drop-progress { margin-top: 22px; max-width: 380px; }
  .drop-progress-bar {
    height: 9px;
    border-radius: 100px;
    background: rgba(255,255,255,0.28);
    overflow: hidden;
  }
  .drop-progress-fill {
    height: 100%;
    width: 0;
    border-radius: 100px;
    background: #fff;
    box-shadow: 0 0 14px rgba(255,255,255,0.6);
    transition: width .6s cubic-bezier(.22,1,.36,1);
  }
  .drop-progress-text {
    margin-top: 8px;
    font-family: 'Inter', sans-serif;
    font-size: .62rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.82);
    font-weight: 700;
  }

  /* Плашка меняет вид, когда минт открылся или всё разобрали */
  .drop-badge.is-live {
    background: linear-gradient(135deg, #2fbf71, #1f9d59);
    color: #fff;
    animation: dropPulseLive 1.6s ease-out infinite;
  }
  .drop-badge.is-ended {
    background: rgba(26,20,18,.55);
    color: rgba(255,255,255,.9);
    animation: none;
  }

  .drop-cta { position: relative; z-index: 2; }
  .drop-mint-btn {
    display: inline-block;
    white-space: nowrap;
    background: rgba(255,255,255,0.96);
    color: #1a1412;
    font-family: 'Inter', sans-serif;
    font-size: .84rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 20px 44px;
    border-radius: 100px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.16), 0 1px 0 rgba(255,255,255,1) inset;
    transition: transform .2s, box-shadow .2s, background .2s;
  }
  .drop-card:hover .drop-mint-btn {
    transform: translateY(-2px);
    background: #fff;
    box-shadow: 0 14px 40px rgba(0,0,0,0.22), 0 1px 0 rgba(255,255,255,1) inset;
  }

  @media (max-width: 1100px) {
    .drop-card { grid-template-columns: 180px 1fr; gap: 30px; padding: 34px 34px; }
    .drop-cta { grid-column: 1 / -1; }
    .drop-mint-btn { display: block; text-align: center; }
    .drop-name { font-size: 2.1rem; }
  }
  @media (max-width: 640px) {
    .drop-card {
      margin-top: 72px;
      grid-template-columns: 1fr;
      gap: 16px;
      padding: 26px 20px;
      border-radius: 26px;
      text-align: center;
    }
    .drop-art { width: 116px; aspect-ratio: 1; margin: 0 auto; border-radius: 20px; }
    .drop-badge-row { justify-content: center; margin-bottom: 10px; }
    .drop-name { font-size: 1.7rem; margin-bottom: 8px; }
    .drop-text { font-size: .82rem; line-height: 1.5; margin-bottom: 14px; }
    /* меньший отступ между строками, когда метаданные переносятся */
    .drop-meta { justify-content: center; gap: 10px 24px; }
    .drop-countdown { justify-content: center; gap: 7px; margin-top: 18px; }
    .drop-cd-cell { min-width: 0; flex: 1; padding: 10px 4px; border-radius: 14px; }
    .drop-cd-val { font-size: 1.2rem; }
    .drop-progress { margin: 18px auto 0; }
    .drop-when { font-size: .64rem; }
    .drop-mint-btn { padding: 18px 32px; }
  }

  @media (prefers-reduced-motion: reduce) {
    .drop-badge { animation: none; }
    .drop-progress-fill { transition: none; }
  }

  /* ── ФОКУС С КЛАВИАТУРЫ ── */
  /* Раньше при табуляции не было видно, где ты находишься. */
  a:focus-visible,
  button:focus-visible,
  [tabindex]:focus-visible {
    outline: 3px solid #d44fa8;
    outline-offset: 3px;
    border-radius: 6px;
  }
