:root {
            --bg: #00000a;
            --surface: #06050f;
            --surface2: #0d0b1e;
            --surface3: #13112a;
            --border: #1e1930;
            --gold: #d4af37;
            --gold-light: #f2da80;
            --gold-dim: #8b6914;
            --text: #eae5f5;
            --text-secondary: #9a8db8;
            --text-muted: #5e5278;
            --danger: #e0556a;
            --success: #4caf84;
            --font: 'Outfit', system-ui, -apple-system, sans-serif;
            --font-mono: 'Space Grotesk', monospace;
            --radius: 18px;
            --radius-sm: 10px;
            --glow: 0 0 30px rgba(212,175,55,0.25);
            --glow-strong: 0 0 50px rgba(212,175,55,0.45);
        }
        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: var(--font);
            background: var(--bg);
            color: var(--text);
            line-height: 1.65;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
            cursor: none;
        }

        /* ══════════════════════════════════════════
           CUSTOM CURSOR
        ══════════════════════════════════════════ */
        #cursor-dot {
            position: fixed;
            width: 10px; height: 10px;
            background: var(--gold);
            border-radius: 50%;
            pointer-events: none;
            z-index: 99999;
            transform: translate(-50%, -50%);
            transition: background 0.2s, transform 0.1s;
            box-shadow: 0 0 14px var(--gold), 0 0 30px rgba(212,175,55,0.5);
            mix-blend-mode: screen;
        }
        #cursor-ring {
            position: fixed;
            width: 36px; height: 36px;
            border: 1.5px solid rgba(212,175,55,0.6);
            border-radius: 50%;
            pointer-events: none;
            z-index: 99998;
            transform: translate(-50%, -50%);
            transition: width 0.25s, height 0.25s, border-color 0.25s, opacity 0.25s;
        }
        body:has(a:hover) #cursor-ring,
        body:has(button:hover) #cursor-ring {
            width: 56px; height: 56px;
            border-color: var(--gold);
        }
        #cursor-trail-canvas {
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            pointer-events: none;
            z-index: 99990;
            mix-blend-mode: screen;
        }

        /* ══════════════════════════════════════════
           PARTICLE CANVAS
        ══════════════════════════════════════════ */
        #particle-canvas {
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            pointer-events: none;
            z-index: 0;
            opacity: 0.7;
        }

        /* ══════════════════════════════════════════
           GLOBAL FRAME BEAMS
        ══════════════════════════════════════════ */
        .page-frame {
            position: fixed; top: 0; left: 0; right: 0; bottom: 0;
            pointer-events: none; z-index: 2000; overflow: hidden;
        }
        .frame-stripe { position: absolute; opacity: 0.6; box-shadow: 0 0 20px var(--gold); }
        .frame-t { top: 0; left: -50vw; width: 50vw; height: 2px; background: linear-gradient(to right, transparent, var(--gold), transparent); animation: beam-r 11s infinite linear; }
        .frame-b { bottom: 0; right: -50vw; width: 50vw; height: 2px; background: linear-gradient(to left, transparent, var(--gold), transparent); animation: beam-l 13s infinite linear; }
        .frame-l { top: -50vh; left: 0; width: 2px; height: 50vh; background: linear-gradient(to bottom, transparent, var(--gold), transparent); animation: beam-d 14s infinite linear; }
        .frame-r { bottom: -50vh; right: 0; width: 2px; height: 50vh; background: linear-gradient(to top, transparent, var(--gold), transparent); animation: beam-u 9s infinite linear; }
        @keyframes beam-r { 0% { transform: translateX(0); } 100% { transform: translateX(400%); } }
        @keyframes beam-l { 0% { transform: translateX(0); } 100% { transform: translateX(-400%); } }
        @keyframes beam-d { 0% { transform: translateY(0); } 100% { transform: translateY(400%); } }
        @keyframes beam-u { 0% { transform: translateY(0); } 100% { transform: translateY(-400%); } }

        /* ══════════════════════════════════════════
           NAV
        ══════════════════════════════════════════ */
        nav {
            position: sticky; top: 0; z-index: 500;
            background: rgba(0,0,0,0.75);
            backdrop-filter: blur(28px) saturate(180%);
            -webkit-backdrop-filter: blur(28px) saturate(180%);
            border-bottom: 1px solid rgba(212,175,55,0.15);
            padding: 12px 24px;
            display: flex; flex-direction: column; align-items: center; gap: 12px;
            transition: background 0.3s;
        }
        nav.scrolled {
            background: rgba(0,0,0,0.92);
            border-bottom-color: rgba(212,175,55,0.3);
        }
        @media (min-width: 900px) {
            nav { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 10px 40px; }
            .nav-logo { justify-self: start; }
            .nav-links { justify-self: center; }
            .btn-nft-calendar { justify-self: end; }
        }
        .nav-logo { font-weight: 800; font-size: 1.1rem; color: var(--gold); letter-spacing: 1px; white-space: nowrap; }
        .nav-logo span { color: var(--text-secondary); font-weight: 400; font-size: 0.65rem; display: block; letter-spacing: 2px; margin-top: 1px; }
        .nav-links { display: flex; gap: 10px; flex-wrap: wrap; }
        .nav-links a {
            color: #050508;
            background: linear-gradient(135deg, #d4af37, #8b6914);
            text-decoration: none; font-size: 0.72rem; font-weight: 800;
            padding: 6px 14px; border-radius: 6px;
            text-transform: uppercase; letter-spacing: 0.5px;
            transition: all 0.3s cubic-bezier(0.175,0.885,0.32,1.275);
            white-space: nowrap; border: 1px solid rgba(255,255,255,0.2);
            position: relative; overflow: hidden; display: inline-block;
            cursor: none;
        }
        .nav-links a:hover { transform: scale(1.12) translateY(-2px); box-shadow: var(--glow); }
        .nav-links a::after {
            content: ''; position: absolute; top: 0; left: -100%;
            width: 50%; height: 100%;
            background: linear-gradient(to right, transparent, rgba(255,255,255,0.4), transparent);
            transform: skewX(-25deg); transition: 0.5s;
        }
        .nav-links a:hover::after { animation: shine-move 0.6s forwards; }

        .btn-nft-calendar {
            background: rgba(212,175,55,0.07); padding: 8px 16px;
            border: 1px solid rgba(212,175,55,0.15); border-radius: 10px;
            display: inline-flex; align-items: center; transition: all 0.3s;
            position: relative; overflow: hidden; cursor: none;
        }
        .btn-nft-calendar img { height: 28px; width: auto; filter: drop-shadow(0 0 5px rgba(212,175,55,0.4)); position: relative; z-index: 2; }
        .btn-nft-calendar:hover { transform: scale(1.05); border-color: rgba(212,175,55,0.5); background: rgba(212,175,55,0.12); box-shadow: var(--glow); }

        /* Edge animated stripes */
        .edge-stripe { position: absolute; opacity: 0.4; transition: all 0.4s; pointer-events: none; }
        .edge-h { height: 1px; width: 60%; }
        .edge-v { width: 1px; height: 60%; }
        .edge-t { top: 0; left: -60%; background: linear-gradient(to right, transparent, var(--gold), transparent); animation: wander-right 5.3s infinite linear; }
        .edge-b { bottom: 0; right: -60%; background: linear-gradient(to left, transparent, var(--gold), transparent); animation: wander-left 6.1s infinite linear; }
        .edge-l { left: 0; bottom: -60%; background: linear-gradient(to top, transparent, var(--gold), transparent); animation: wander-up 7.2s infinite linear; }
        .edge-r { right: 0; top: -60%; background: linear-gradient(to bottom, transparent, var(--gold), transparent); animation: wander-down 4.8s infinite linear; }
        @keyframes wander-right { 0% { transform: translateX(0); } 100% { transform: translateX(400%); } }
        @keyframes wander-left  { 0% { transform: translateX(0); } 100% { transform: translateX(-400%); } }
        @keyframes wander-up    { 0% { transform: translateY(0); } 100% { transform: translateY(-400%); } }
        @keyframes wander-down  { 0% { transform: translateY(0); } 100% { transform: translateY(400%); } }

        /* Corner accents */
        .corner-accent {
            position: absolute; width: 16px; height: 16px;
            border: 2px solid var(--gold); opacity: 0.55;
            transition: all 0.35s; pointer-events: none;
        }
        .card:hover .corner-accent, .gallery-showcase:hover .corner-accent { opacity: 1; width: 26px; height: 26px; filter: drop-shadow(0 0 6px var(--gold)); }
        .corner-tl { top: -2px; left: -2px; border-right: none; border-bottom: none; border-radius: var(--radius) 0 0 0; }
        .corner-tr { top: -2px; right: -2px; border-left: none; border-bottom: none; border-radius: 0 var(--radius) 0 0; }
        .corner-bl { bottom: -2px; left: -2px; border-right: none; border-top: none; border-radius: 0 0 0 var(--radius); }
        .corner-br { bottom: -2px; right: -2px; border-left: none; border-top: none; border-radius: 0 0 var(--radius) 0; }
        .card:hover .edge-stripe, .gallery-showcase:hover .edge-stripe { opacity: 1; box-shadow: 0 0 14px var(--gold); }

        /* ══════════════════════════════════════════
           MARQUEE TICKER
        ══════════════════════════════════════════ */
        .marquee-band {
            background: linear-gradient(135deg, rgba(212,175,55,0.12), rgba(212,175,55,0.04));
            border-top: 1px solid rgba(212,175,55,0.2);
            border-bottom: 1px solid rgba(212,175,55,0.2);
            overflow: hidden; white-space: nowrap; padding: 8px 0;
            position: relative; z-index: 10;
        }
        .marquee-inner {
            display: inline-block;
            animation: marquee-scroll 28s linear infinite;
        }
        .marquee-band:hover .marquee-inner { animation-play-state: paused; }
        .marquee-item {
            display: inline-flex; align-items: center; gap: 8px;
            margin: 0 30px; font-size: 0.72rem; font-weight: 700;
            text-transform: uppercase; letter-spacing: 2px; color: var(--gold);
        }
        .marquee-item span { color: var(--text-secondary); font-weight: 400; }
        .marquee-dot { width: 4px; height: 4px; background: var(--gold); border-radius: 50%; display: inline-block; box-shadow: 0 0 6px var(--gold); }
        @keyframes marquee-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

        /* ══════════════════════════════════════════
           HERO
        ══════════════════════════════════════════ */
        .hero {
            text-align: center;
            padding: 80px 20px 60px;
            position: relative; z-index: 1;
            max-width: 960px; margin: 0 auto;
        }
        .hero-badge {
            display: inline-flex; align-items: center; gap: 8px;
            background: linear-gradient(135deg, rgba(212,175,55,0.15), rgba(212,175,55,0.05));
            border: 1px solid rgba(212,175,55,0.35);
            color: var(--gold); font-weight: 700; font-size: 0.65rem;
            padding: 6px 18px; border-radius: 30px;
            letter-spacing: 2px; text-transform: uppercase;
            margin-bottom: 24px;
            animation: float-badge 3s ease-in-out infinite;
            backdrop-filter: blur(10px);
        }
        .badge-pulse {
            width: 6px; height: 6px; background: var(--gold); border-radius: 50%;
            animation: pulse-dot 1.5s ease-in-out infinite;
            box-shadow: 0 0 6px var(--gold);
        }
        @keyframes float-badge { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-5px);} }
        @keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1);} 50%{opacity:0.5;transform:scale(0.5);} }

        .hero h1 {
            font-size: clamp(2.8rem, 8vw, 5.2rem);
            font-weight: 900; line-height: 1.0;
            background: linear-gradient(180deg, #fff8e7 0%, #f2da80 30%, #d4af37 65%, #8b6914 100%);
            -webkit-background-clip: text; background-clip: text; color: transparent;
            margin-bottom: 12px;
            letter-spacing: -1px;
            position: relative;
        }
        .hero h1::after {
            content: '';
            position: absolute; bottom: -8px; left: 50%; transform: translateX(-50%);
            width: 0; height: 2px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
            animation: underline-grow 1.5s 0.5s forwards ease-out;
        }
        @keyframes underline-grow { to { width: 60%; } }

        .hero .tagline {
            font-size: 1.1rem; color: var(--text-secondary);
            margin: 24px auto 28px; max-width: 520px; line-height: 1.7;
        }
        .hero-stats {
            display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin: 28px 0;
        }
        .hero-stat {
            text-align: center;
            background: rgba(212,175,55,0.04);
            border: 1px solid rgba(212,175,55,0.18);
            padding: 14px 22px; border-radius: 14px;
            backdrop-filter: blur(12px); min-width: 120px;
            transition: all 0.35s cubic-bezier(0.175,0.885,0.32,1.275);
            position: relative; overflow: hidden; cursor: default;
        }
        .hero-stat::before {
            content: ''; position: absolute; inset: 0;
            background: radial-gradient(circle at center, rgba(212,175,55,0.08), transparent 70%);
            opacity: 0; transition: opacity 0.4s;
        }
        .hero-stat:hover::before { opacity: 1; }
        .hero-stat:hover { background: rgba(212,175,55,0.1); border-color: var(--gold); transform: translateY(-8px) scale(1.03); box-shadow: var(--glow); }
        .hero-stat .num { font-size: 1.8rem; font-weight: 800; color: var(--gold); display: block; font-family: var(--font-mono); }
        .hero-stat .label { font-size: 0.62rem; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 2px; margin-top: 3px; }

        .hero-buttons { margin-top: 8px; display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; }
        .btn-hero {
            display: inline-flex; align-items: center; gap: 8px;
            background: linear-gradient(135deg, #d4af37, #c49a2f);
            color: #06050f; padding: 14px 32px; border-radius: 50px;
            font-weight: 800; font-size: 0.95rem; text-decoration: none;
            transition: all 0.25s; cursor: none; position: relative; overflow: hidden;
            border: none; letter-spacing: 0.3px;
        }
        .btn-hero::before {
            content: ''; position: absolute; top: 0; left: -100%;
            width: 60%; height: 100%;
            background: linear-gradient(to right, transparent, rgba(255,255,255,0.3), transparent);
            transform: skewX(-20deg);
        }
        .btn-hero:hover { transform: translateY(-3px) scale(1.04); box-shadow: var(--glow-strong); }
        .btn-hero:hover::before { animation: shine-move 0.6s forwards; }
        .btn-hero-outline {
            background: transparent;
            border: 1.5px solid rgba(212,175,55,0.5);
            color: var(--gold);
        }
        .btn-hero-outline:hover { background: rgba(212,175,55,0.1); border-color: var(--gold); }
        @keyframes shine-move { 0%{left:-100%;} 100%{left:150%;} }

        /* ══════════════════════════════════════════
           COUNTDOWN TIMER
        ══════════════════════════════════════════ */
        .countdown-section {
            position: relative; z-index: 1;
            text-align: center;
            padding: 50px 20px;
            background: linear-gradient(180deg, var(--bg), var(--surface));
        }
        .countdown-label {
            font-size: 0.7rem; text-transform: uppercase; letter-spacing: 3px;
            color: var(--text-muted); margin-bottom: 20px;
        }
        .countdown-grid {
            display: inline-flex; gap: 16px; flex-wrap: wrap; justify-content: center;
        }
        .countdown-block {
            background: var(--surface2);
            border: 1px solid rgba(212,175,55,0.2);
            border-radius: 16px; padding: 20px 24px; min-width: 90px;
            position: relative; overflow: hidden;
            transition: all 0.3s;
        }
        .countdown-block::before {
            content: ''; position: absolute; inset: 0;
            background: radial-gradient(circle at center bottom, rgba(212,175,55,0.08), transparent 70%);
        }
        .countdown-block:hover { border-color: var(--gold); box-shadow: var(--glow); transform: translateY(-4px); }
        .cd-number {
            font-family: var(--font-mono); font-size: 2.8rem; font-weight: 700;
            color: var(--gold); line-height: 1;
            display: block; text-shadow: 0 0 20px rgba(212,175,55,0.5);
            transition: transform 0.15s;
        }
        .cd-number.flip { animation: cd-flip 0.3s ease-out; }
        @keyframes cd-flip { 0%{transform:scaleY(0) translateY(-10px);opacity:0;} 100%{transform:scaleY(1) translateY(0);opacity:1;} }
        .cd-label { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 2px; color: var(--text-muted); margin-top: 6px; }
        .countdown-block .edge-stripe { opacity: 0.2; }
        .countdown-block:hover .edge-stripe { opacity: 0.7; box-shadow: 0 0 10px var(--gold); }

        /* ══════════════════════════════════════════
           SECTION LAYOUT
        ══════════════════════════════════════════ */
        .section {
            position: relative; z-index: 1;
            max-width: 960px; margin: 0 auto; padding: 60px 20px;
        }
        .section-dark {
            background: var(--surface); position: relative;
        }
        .section-stripe { position: absolute; left: 0; width: 100%; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); opacity: 0.25; box-shadow: 0 0 8px var(--gold); }
        .stripe-top { top: 0; } .stripe-bottom { bottom: 0; }

        .section-title {
            font-size: 1.9rem; font-weight: 800;
            background: linear-gradient(135deg, #f2da80, #d4af37);
            -webkit-background-clip: text; background-clip: text; color: transparent;
            margin-bottom: 8px; text-align: center; letter-spacing: -0.3px;
        }
        .section-subtitle { color: var(--text-secondary); text-align: center; margin-bottom: 36px; font-size: 0.9rem; }

        /* ══════════════════════════════════════════
           CARDS
        ══════════════════════════════════════════ */
        .card {
            background: var(--surface2);
            border: 1px solid rgba(212,175,55,0.1);
            border-radius: var(--radius); padding: 22px;
            margin-bottom: 16px; position: relative;
            transition: transform 0.4s cubic-bezier(0.175,0.885,0.32,1.275), box-shadow 0.4s, border-color 0.3s;
            overflow: hidden;
        }
        .card:hover { transform: translateY(-6px); box-shadow: 0 15px 40px rgba(0,0,0,0.6), var(--glow); border-color: rgba(212,175,55,0.4); }
        .card::before {
            content: ''; position: absolute; top: 0; left: -100%;
            width: 50%; height: 100%;
            background: linear-gradient(to right, transparent, rgba(212,175,55,0.08), transparent);
            transform: skewX(-25deg); transition: 0.5s; pointer-events: none;
        }
        .card:hover::before { animation: shine-move 0.75s forwards; }
        .card h3 { color: var(--gold-light); font-weight: 700; margin-bottom: 10px; font-size: 1.05rem; }
        .card p, .card li { color: var(--text-secondary); font-size: 0.88rem; line-height: 1.65; }

        .grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
        .grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
        @media (max-width: 640px) { .grid-2 { grid-template-columns: 1fr; } }

        /* ══════════════════════════════════════════
           GALLERY — FLIP CARDS
        ══════════════════════════════════════════ */
        .flip-card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 24px; max-width: 900px; margin: 0 auto;
        }
        .flip-card {
            perspective: 1000px; height: 340px; cursor: none;
        }
        .flip-card-inner {
            position: relative; width: 100%; height: 100%;
            transform-style: preserve-3d;
            transition: transform 0.7s cubic-bezier(0.4,0.2,0.2,1);
        }
        .flip-card:hover .flip-card-inner { transform: rotateY(180deg); }
        .flip-card-front, .flip-card-back {
            position: absolute; inset: 0;
            backface-visibility: hidden; -webkit-backface-visibility: hidden;
            border-radius: var(--radius); overflow: hidden;
            border: 1px solid rgba(212,175,55,0.2);
        }
        .flip-card-front {
            background: var(--surface2);
        }
        .flip-card-front img {
            width: 100%; height: 100%; object-fit: cover;
            transition: transform 0.6s ease;
        }
        .flip-card:hover .flip-card-front img { transform: scale(1.05); }
        .flip-card-front .flip-overlay {
            position: absolute; inset: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
            display: flex; align-items: flex-end; padding: 16px;
        }
        .flip-card-front .flip-label {
            font-size: 0.65rem; text-transform: uppercase; letter-spacing: 2px;
            color: var(--gold); font-weight: 700;
            display: flex; align-items: center; gap: 6px;
        }
        .flip-icon { font-size: 0.9rem; animation: spin-hint 3s ease-in-out infinite; }
        @keyframes spin-hint { 0%,100%{transform:rotate(0deg);} 50%{transform:rotate(15deg);} }

        .flip-card-back {
            background: var(--surface3);
            transform: rotateY(180deg);
            display: flex; flex-direction: column; align-items: center; justify-content: center;
            padding: 28px; text-align: center;
            border-color: rgba(212,175,55,0.4);
            box-shadow: inset 0 0 40px rgba(212,175,55,0.05);
        }
        .flip-back-badge {
            background: linear-gradient(135deg, var(--gold), var(--gold-dim));
            color: #06050f; font-size: 0.6rem; font-weight: 800;
            padding: 4px 14px; border-radius: 20px; letter-spacing: 1.5px;
            text-transform: uppercase; margin-bottom: 16px;
        }
        .flip-back-title { font-size: 1.2rem; font-weight: 800; color: var(--text); margin-bottom: 12px; }
        .flip-back-stat { margin: 6px 0; font-size: 0.82rem; color: var(--text-secondary); }
        .flip-back-stat strong { color: var(--gold); }
        .flip-back-divider { width: 40px; height: 1px; background: rgba(212,175,55,0.3); margin: 14px auto; }

        /* Gallery showcase (Wall of Punks) */
        .gallery-showcase {
            max-width: 100%; margin: 0 auto; position: relative; padding: 14px;
            background: var(--surface2); border-radius: var(--radius);
            border: 1px solid rgba(212,175,55,0.2); box-shadow: 0 20px 60px rgba(0,0,0,0.6);
            overflow: hidden; transition: transform 0.5s cubic-bezier(0.175,0.885,0.32,1.275);
        }
        .gallery-showcase:hover { transform: scale(1.01); border-color: var(--gold); }
        .gallery-showcase img { width: 100%; height: auto; display: block; border-radius: calc(var(--radius) - 10px); border: 1px solid var(--border); }

        /* ══════════════════════════════════════════
           MINT TABLE
        ══════════════════════════════════════════ */
        .mint-glass {
            background: rgba(13,11,30,0.8);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(212,175,55,0.2);
            border-radius: var(--radius); overflow: hidden;
            box-shadow: var(--glow);
        }
        .mint-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
        .mint-table th {
            text-align: left; color: var(--text-muted); font-weight: 700;
            font-size: 0.68rem; text-transform: uppercase; letter-spacing: 1.5px;
            padding: 14px 16px; border-bottom: 1px solid rgba(212,175,55,0.15);
            background: rgba(212,175,55,0.04);
        }
        .mint-table td { padding: 16px; border-bottom: 1px solid rgba(30,25,48,0.6); color: var(--text); transition: background 0.2s; }
        .mint-table tbody tr:hover td { background: rgba(212,175,55,0.04); }
        .mint-table tbody tr:last-child td { border-bottom: none; }
        .phase-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; margin-right: 8px; animation: dot-pulse 2s infinite; }
        @keyframes dot-pulse { 0%,100%{box-shadow:0 0 0 0 rgba(212,175,55,0.5);} 50%{box-shadow:0 0 0 4px transparent;} }
        .dot-team { background: #f2da80; box-shadow: 0 0 8px #f2da80; }
        .dot-vault { background: #d4af37; box-shadow: 0 0 8px #d4af37; }
        .dot-og { background: #c7a43b; }
        .dot-collectors { background: #b8960c; }
        .dot-public { background: #9e7f1f; }
        .price-badge {
            display: inline-block; background: rgba(212,175,55,0.12);
            border: 1px solid rgba(212,175,55,0.3); color: var(--gold);
            padding: 3px 10px; border-radius: 20px; font-family: var(--font-mono); font-weight: 700;
            font-size: 0.85rem;
        }
        .price-badge.free-badge { background: rgba(76,175,132,0.12); border-color: rgba(76,175,132,0.4); color: var(--success); }

        /* ══════════════════════════════════════════
           TIMELINE
        ══════════════════════════════════════════ */
        .timeline { position: relative; padding-left: 32px; border-left: 2px solid rgba(212,175,55,0.2); margin-left: 12px; }
        .timeline-item {
            position: relative; margin-bottom: 36px; padding-left: 20px;
            opacity: 0; transform: translateX(-20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        .timeline-item.active { opacity: 1; transform: translateX(0); }
        .timeline-item::before {
            content: ''; position: absolute; left: -38px; top: 6px;
            width: 14px; height: 14px; background: var(--gold); border-radius: 50%;
            border: 3px solid var(--bg); box-shadow: 0 0 12px var(--gold);
            animation: pulse-dot 2s ease-in-out infinite;
        }
        .timeline-phase { font-size: 0.68rem; color: var(--gold); font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 4px; }
        .timeline-title { font-weight: 800; font-size: 1.15rem; color: var(--text); margin-bottom: 6px; }
        .timeline-desc { color: var(--text-secondary); font-size: 0.86rem; line-height: 1.7; }

        /* ══════════════════════════════════════════
           FAQ ACCORDION
        ══════════════════════════════════════════ */
        .faq-list { display: flex; flex-direction: column; gap: 12px; }
        .faq-item {
            background: var(--surface2); border: 1px solid rgba(212,175,55,0.12);
            border-radius: var(--radius-sm); overflow: hidden;
            transition: border-color 0.3s, box-shadow 0.3s;
        }
        .faq-item.open { border-color: rgba(212,175,55,0.4); box-shadow: var(--glow); }
        .faq-question {
            width: 100%; display: flex; align-items: center; justify-content: space-between;
            padding: 18px 20px; background: transparent; border: none; color: var(--text);
            font-family: var(--font); font-size: 0.95rem; font-weight: 700; text-align: left;
            cursor: none; gap: 12px;
        }
        .faq-question:hover { color: var(--gold-light); }
        .faq-icon {
            flex-shrink: 0; width: 28px; height: 28px;
            border: 1px solid rgba(212,175,55,0.3); border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            color: var(--gold); font-size: 1rem; font-weight: 300;
            transition: transform 0.35s, background 0.25s;
        }
        .faq-item.open .faq-icon { transform: rotate(45deg); background: rgba(212,175,55,0.15); }
        .faq-answer {
            max-height: 0; overflow: hidden;
            transition: max-height 0.45s cubic-bezier(0.4,0,0.2,1), padding 0.35s;
            padding: 0 20px;
        }
        .faq-item.open .faq-answer { max-height: 400px; padding: 0 20px 18px; }
        .faq-answer p { color: var(--text-secondary); font-size: 0.88rem; line-height: 1.75; }

        /* ══════════════════════════════════════════
           PROMISE / TAGS
        ══════════════════════════════════════════ */
        .tag {
            display: inline-block; background: rgba(212,175,55,0.06);
            border: 1px solid rgba(212,175,55,0.2); padding: 5px 14px;
            border-radius: 20px; font-size: 0.72rem; color: var(--text-secondary);
            margin: 4px; transition: all 0.25s; cursor: default;
        }
        .tag:hover { background: rgba(212,175,55,0.14); color: var(--gold); border-color: var(--gold); transform: translateY(-2px); }

        /* ══════════════════════════════════════════
           FOOTER
        ══════════════════════════════════════════ */
        footer {
            text-align: center; padding: 40px 20px;
            color: var(--text-muted); font-size: 0.78rem;
            border-top: 1px solid rgba(212,175,55,0.1);
            position: relative; z-index: 1;
            background: var(--surface);
        }
        .footer-brand { font-size: 1.1rem; font-weight: 800; color: var(--gold); margin-bottom: 6px; letter-spacing: 1px; }
        .footer-tagline { color: var(--text-muted); font-size: 0.8rem; margin-bottom: 20px; }
        .footer-socials { display: flex; align-items: center; justify-content: center; gap: 16px; margin: 20px 0; }
        .footer-socials a {
            display: flex; align-items: center; justify-content: center;
            width: 44px; height: 44px; border-radius: 50%;
            border: 1.5px solid rgba(212,175,55,0.3); background: rgba(212,175,55,0.05);
            transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s; cursor: none;
        }
        .footer-socials a:hover { transform: scale(1.2) translateY(-2px); box-shadow: var(--glow); border-color: var(--gold); }
        .footer-socials img { height: 20px; width: auto; filter: drop-shadow(0 0 5px rgba(212,175,55,0.3)); }
        .footer-copy { margin-top: 20px; color: rgba(94,82,120,0.7); font-size: 0.72rem; }

        /* ══════════════════════════════════════════
           SCROLL PROGRESS
        ══════════════════════════════════════════ */
        #scrollProgress {
            position: fixed; top: 0; left: 0; height: 3px;
            background: linear-gradient(90deg, #d4af37, #f2da80, #d4af37);
            background-size: 200% 100%;
            width: 0%; z-index: 9999;
            box-shadow: 0 0 12px var(--gold);
            animation: shimmer-bar 2s linear infinite;
        }
        @keyframes shimmer-bar { 0%{background-position:0% 50%;} 100%{background-position:200% 50%;} }

        /* ══════════════════════════════════════════
           WHITELIST MODAL
        ══════════════════════════════════════════ */
        #whitelistModal {
            display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0,0,10,0.88);
            backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
            z-index: 10000; align-items: center; justify-content: center;
            opacity: 0; transition: opacity 0.35s;
        }
        #whitelistModal.active { display: flex; opacity: 1; }
        .modal-content {
            background: var(--surface2); border: 1px solid rgba(212,175,55,0.5);
            border-radius: 24px; padding: 44px 36px; max-width: 460px; width: 92%;
            position: relative; box-shadow: 0 0 60px rgba(212,175,55,0.2);
            transform: scale(0.88) translateY(20px);
            transition: transform 0.4s cubic-bezier(0.175,0.885,0.32,1.275);
            text-align: center;
        }
        #whitelistModal.active .modal-content { transform: scale(1) translateY(0); }
        .modal-close { position: absolute; top: 16px; right: 20px; color: var(--text-secondary); font-size: 1.6rem; cursor: none; transition: color 0.2s, transform 0.2s; }
        .modal-close:hover { color: var(--gold); transform: rotate(90deg); }
        .modal-title { color: var(--gold); font-size: 1.6rem; font-weight: 900; margin-bottom: 10px; letter-spacing: -0.3px; }
        .modal-desc { color: var(--text-secondary); font-size: 0.88rem; margin-bottom: 28px; line-height: 1.65; }
        .eth-input {
            width: 100%; padding: 14px 18px; background: rgba(0,0,0,0.5);
            border: 1px solid var(--border); border-radius: 10px; color: var(--text);
            font-family: var(--font-mono); font-size: 0.9rem; margin-bottom: 14px;
            outline: none; transition: border-color 0.2s, box-shadow 0.2s;
        }
        .eth-input:focus { border-color: var(--gold); box-shadow: 0 0 14px rgba(212,175,55,0.2); }
        .btn-submit {
            width: 100%; background: linear-gradient(135deg, #d4af37, #c49a2f);
            color: #06050f; border: none; padding: 14px; border-radius: 10px;
            font-weight: 800; font-size: 1rem; cursor: none;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .btn-submit:hover { transform: translateY(-2px); box-shadow: var(--glow); }
        .btn-submit:disabled { background: var(--text-muted); cursor: not-allowed; transform: none; box-shadow: none; }
        .status-msg { margin-top: 14px; font-size: 0.85rem; display: none; }
        .status-msg.success { color: var(--success); display: block; }
        .status-msg.error { color: var(--danger); display: block; }

        /* ══════════════════════════════════════════
           REVEAL
        ══════════════════════════════════════════ */
        .reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.85s ease-out, transform 0.85s ease-out; }
        .reveal.active { opacity: 1; transform: translateY(0); }
        .reveal-delay-1 { transition-delay: 0.1s; }
        .reveal-delay-2 { transition-delay: 0.2s; }
        .reveal-delay-3 { transition-delay: 0.3s; }

        /* ══════════════════════════════════════════
           LIGHTBOX
        ══════════════════════════════════════════ */
        .lightbox {
            display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0,0,5,0.96); z-index: 2000; align-items: center;
            justify-content: center; cursor: none;
        }
        .lightbox.active { display: flex; }
        .lightbox img { max-width: 90%; max-height: 90%; border-radius: var(--radius); border: 2px solid var(--gold); }

        /* ══════════════════════════════════════════
           MISC
        ══════════════════════════════════════════ */
        .divider { border: none; border-top: 1px solid rgba(212,175,55,0.12); margin: 28px 0; }
        .text-gold { color: var(--gold); }
        .text-center { text-align: center; }
        .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 28px; } .mb-2 { margin-bottom: 14px; }

        @media (max-width: 600px) {
            .hero h1 { font-size: 2.4rem; }
            nav { flex-wrap: wrap; gap: 8px; }
            .nav-links { gap: 8px; }
            .hero-stats { gap: 12px; }
            .flip-card-grid { grid-template-columns: 1fr; }
            .flip-card { height: 300px; }
        }

        /* ── Horizontal scroll for tables on mobile ── */
        .table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius); }

        /* ── Glow ring under section titles ── */
        .title-glow {
            display: block; width: 60px; height: 2px; margin: 10px auto 0;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
            border-radius: 2px; box-shadow: 0 0 8px var(--gold);
        }

        /* ── CTA section gradient ── */
        .cta-section {
            position: relative; z-index: 1;
            text-align: center; padding: 70px 20px;
            background: radial-gradient(ellipse at center, rgba(212,175,55,0.06) 0%, transparent 70%);
        }