        /* ── LOGO MARK (mask technique — makes black bg disappear, tints white parts purple) ── */
.logo-mark {
    background: var(--grad-text);          /* your existing purple-pink gradient */
    -webkit-mask-image: url('/logo.PNG');
    mask-image:         url('/logo.PNG');
    -webkit-mask-size:     contain;
    mask-size:             contain;
    -webkit-mask-repeat:   no-repeat;
    mask-repeat:           no-repeat;
    -webkit-mask-position: center;
    mask-position:         center;
    -webkit-mask-mode:     luminance;      /* white parts of logo = visible, black = gone */
    mask-mode:             luminance;
    display: block;
}

/* Nav size */
.logo-nav  { width: 155px; height:48px; } 

/* Hero center size */
.logo-hero { width: 590px; max-width: 85vw; height: 182px; margin: 0 auto 1.2rem; }
        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

        :root {
            --bg:           #06060f;
            --bg2:          #0d0d1f;
            --card:         rgba(139, 92, 246, 0.04);
            --purple:       #8b5cf6;
            --purple-l:     #a78bfa;
            --pink:         #ec4899;
            --grad:         linear-gradient(135deg, #8b5cf6, #ec4899);
            --grad-text:    linear-gradient(135deg, #c084fc, #f472b6);
            --border:       rgba(139, 92, 246, 0.18);
            --border-h:     rgba(139, 92, 246, 0.5);
            --text:         #ffffff;
            --text2:        #94a3b8;
            --text3:        #64748b;
        }

        html { scroll-behavior: smooth; }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--bg);
            color: var(--text);
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* ── CANVAS ── */
        #canvas {
            position: fixed;
            inset: 0;
            z-index: 0;
            pointer-events: none;
        }

        /* ── NAV ── */
        nav {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 1000;
            padding: 1rem 0;
            transition: all .3s ease;
        }
        nav.scrolled {
            background: rgba(6,6,15,.93);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border);
        }
        .nav-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .nav-logo img { height: 34px; width: auto; }
        .nav-logo span {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.4rem;
            font-weight: 700;
            letter-spacing: .08em;
            color: #fff;
            display: none;
        }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 2.5rem;
            list-style: none;
        }
        .nav-links a {
            text-decoration: none;
            color: var(--text2);
            font-size: .875rem;
            font-weight: 500;
            transition: color .2s;
        }
        .nav-links a:hover { color: #fff; }
        .btn-launch {
            background: var(--grad);
            color: #fff;
            padding: .55rem 1.3rem;
            border-radius: 8px;
            text-decoration: none;
            font-size: .85rem;
            font-weight: 600;
            transition: all .3s;
            border: none;
            cursor: pointer;
        }
        .btn-launch:hover {
            transform: translateY(-1px);
            box-shadow: 0 8px 28px rgba(139,92,246,.4);
        }
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 4px;
        }
        .hamburger span {
            display: block;
            width: 22px; height: 2px;
            background: #fff;
            border-radius: 2px;
            transition: all .3s;
        }

        /* Mobile overlay */
        .mob-menu {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(6,6,15,.97);
            z-index: 999;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 2.2rem;
        }
        .mob-menu.open { display: flex; }
        .mob-menu a {
            text-decoration: none;
            color: #fff;
            font-size: 1.4rem;
            font-weight: 600;
        }
        .mob-close {
            position: absolute;
            top: 1.5rem; right: 2rem;
            font-size: 2rem;
            cursor: pointer;
            color: #fff;
            line-height: 1;
        }

        /* ── PROTOCOL SECTION STYLES ── */
        #protocol { border-top: 1px solid var(--border); background: rgba(139, 92, 246, 0.02); }
        .wp-shell { display: flex; gap: 4rem; position: relative; }
        .wp-toc {
            position: sticky; top: 100px; align-self: flex-start;
            width: 220px; flex-shrink: 0; display: flex; flex-direction: column;
        }
        .wp-toc__list { list-style: none; padding: 0; border-left: 1px solid var(--border); }
        .wp-toc__link {
            display: block; padding: .6rem 1.2rem; font-size: .85rem;
            color: var(--text3); text-decoration: none; transition: all .2s;
            border-left: 2px solid transparent; margin-left: -1px;
        }
        .wp-toc__link:hover { color: var(--text); }
        .wp-toc__link.is-active {
            color: var(--purple-l); border-left-color: var(--purple);
            background: rgba(139, 92, 246, 0.05);
        }
        .wp-toc__list--sub { list-style: none; padding-left: 1rem; }

        .wp-content { flex: 1; min-width: 0; max-width: 800px; }
        .wp-hero__eyebrow {
            display: inline-block; font-family: monospace; font-size: 11px;
            letter-spacing: 2px; color: var(--purple-l); text-transform: uppercase;
            border: 1px solid var(--border); padding: 4px 10px; margin-bottom: 1.5rem;
            border-radius: 4px;
        }
        .wp-section { margin-bottom: 5rem; }
        .wp-section h3 { font-family: 'Space Grotesk', sans-serif; color: #fff; margin: 2.5rem 0 1.2rem; font-size: 1.5rem; }
        .wp-section p { color: var(--text2); margin-bottom: 1.2rem; font-size: 1rem; }
        .wp-section strong { color: #fff; }
        
        .wp-rule {
            display: flex; gap: 1.5rem; padding: 1.5rem;
            background: var(--card); border: 1px solid var(--border);
            border-left: 3px solid var(--purple); border-radius: 12px; margin-bottom: 1rem;
        }
        .wp-rule__num { font-family: 'Space Grotesk'; font-weight: 800; color: var(--purple-l); font-size: 1.4rem; }
        .wp-rule__body h4 { color: #fff; margin-bottom: .5rem; font-family: 'Space Grotesk'; }
        .wp-rule__body p { margin-bottom: 0; font-size: .9rem; }

        .wp-diagram {
            margin: 2rem 0; padding: 2rem; background: rgba(13, 13, 31, 0.6);
            border: 1px solid var(--border); border-radius: 16px; text-align: center;
        }
        .wp-diagram-placeholder {
            height: 120px; border: 1px dashed var(--border);
            display: flex; align-items: center; justify-content: center;
            color: var(--text3); font-family: monospace; font-size: .8rem;
        }
        .wp-diagram__caption { font-size: .75rem; color: var(--text3); margin-top: 1rem; font-style: italic; }

        .wp-layer-card {
            padding: 1.5rem; background: var(--card); border: 1px solid var(--border);
            border-radius: 12px; margin-bottom: 1rem; border-left: 3px solid var(--purple);
        }
        .wp-layer-card__label { font-size: .65rem; color: var(--purple-l); text-transform: uppercase; letter-spacing: 1px; margin-bottom: .4rem; }
        .wp-layer-card__title { font-family: 'Space Grotesk'; font-size: 1.1rem; color: #fff; margin-bottom: .6rem; }
        .wp-layer-card__desc { font-size: .9rem; color: var(--text2); margin: 0; }

        .wp-invariant {
            margin: 2.5rem 0; padding: 2rem; border-radius: 16px;
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.05));
            border: 1px solid var(--border-h); text-align: center;
        }
        .wp-invariant p { margin: 0; font-family: 'Space Grotesk'; font-weight: 700; color: #fff; font-size: 1.2rem; }
        .wp-mono { font-family: monospace; color: var(--pink); background: rgba(236, 72, 153, 0.1); padding: 2px 6px; border-radius: 4px; }

        .wp-feature {
            padding: 1.5rem; background: rgba(255,255,255,0.02);
            border: 1px solid var(--border); border-radius: 12px; margin: 1.5rem 0;
        }
        .wp-feature h4 { color: #fff; margin-bottom: .8rem; font-family: 'Space Grotesk'; }
        .wp-feature p { margin-bottom: 0; font-size: .9rem; }

        .wp-principle { padding: 1.5rem 0; border-bottom: 1px solid var(--border); }
        .wp-principle h4 { color: #fff; margin-bottom: .5rem; font-family: 'Space Grotesk'; }
        .wp-principle p { font-size: .9rem; margin: 0; }

        .wp-footnote { margin-top: 4rem; padding-top: 2rem; border-top: 1px solid var(--border); font-size: .8rem; color: var(--text3); font-style: italic; }

        @media (max-width: 980px) {
            .wp-toc { display: none; }
            .wp-content { max-width: 100%; }
            .wp-rule { flex-direction: column; gap: 0.5rem; }
        }

        /* Simple SVG styling for diagram placeholders */
        .wp-diag-svg { width: 100%; max-width: 400px; height: auto; margin: 0 auto; }
        .wp-diag-shape { fill: rgba(139, 92, 246, 0.1); stroke: var(--purple); stroke-width: 1; }
        .wp-diag-text { fill: var(--text2); font-size: 10px; font-family: 'Space Grotesk'; }

        /* ── SHARED ── */
        section { position: relative; z-index: 1; }
        .wrap { max-width: 1200px; margin: 0 auto; padding: 6rem 2rem; }
        .label {
            font-size: .72rem;
            font-weight: 600;
            letter-spacing: .15em;
            text-transform: uppercase;
            color: var(--purple-l);
            margin-bottom: .8rem;
        }
        .h2 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(1.9rem, 4vw, 2.9rem);
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: .9rem;
        }
        .h2 span {
            background: var(--grad-text);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .desc {
            font-size: .95rem;
            color: var(--text2);
            max-width: 540px;
            line-height: 1.8;
        }

        /* fade-in */
        .fi {
            opacity: 0;
            transform: translateY(28px);
            transition: opacity .7s ease, transform .7s ease;
        }
        .fi.on { opacity: 1; transform: none; }

        /* ── HERO ── */
        #hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 8rem 2rem 5rem;
        }
        .hero-inner { max-width: 820px; }

        .badge {
            display: inline-flex;
            align-items: center;
            gap: .5rem;
            background: rgba(139,92,246,.1);
            border: 1px solid rgba(139,92,246,.3);
            border-radius: 100px;
            padding: .38rem 1rem;
            font-size: .78rem;
            color: var(--purple-l);
            letter-spacing: .05em;
            margin-bottom: 2rem;
        }
        .badge::before {
            content: '';
            width: 6px; height: 6px;
            background: var(--purple);
            border-radius: 50%;
            animation: blink 2s infinite;
        }
        @keyframes blink {
            0%,100%{ opacity:1; transform:scale(1); }
            50%{ opacity:.4; transform:scale(.8); }
        }

        .hero-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(4.5rem, 14vw, 10rem);
            font-weight: 700;
            letter-spacing: -.02em;
            line-height: 1;
            margin-bottom: .6rem;
            background: var(--grad-text);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero-sub {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(1.05rem, 2.4vw, 1.5rem);
            font-weight: 500;
            color: #fff;
            margin-bottom: .9rem;
        }
        .hero-p {
            font-size: .95rem;
            color: var(--text2);
            max-width: 580px;
            margin: 0 auto 2.5rem;
            line-height: 1.85;
        }

        .hero-btns {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
            margin-bottom: 3rem;
        }
        .btn-primary {
            background: var(--grad);
            color: #fff;
            padding: .85rem 2rem;
            border-radius: 10px;
            text-decoration: none;
            font-size: .92rem;
            font-weight: 600;
            transition: all .3s;
            display: inline-flex;
            align-items: center;
            gap: .45rem;
        }
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 14px 38px rgba(139,92,246,.45);
        }
        .btn-outline {
            background: transparent;
            color: #fff;
            padding: .85rem 2rem;
            border-radius: 10px;
            text-decoration: none;
            font-size: .92rem;
            font-weight: 600;
            border: 1px solid var(--border);
            transition: all .3s;
            display: inline-flex;
            align-items: center;
            gap: .45rem;
        }
        .btn-outline:hover {
            border-color: var(--border-h);
            background: rgba(139,92,246,.08);
            transform: translateY(-2px);
        }

        /* waveform */
        .waveform {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 3px;
            height: 44px;
            margin-bottom: 3.5rem;
        }
        .wb {
            width: 3px;
            background: var(--grad);
            border-radius: 3px;
            animation: wv 1.4s ease-in-out infinite;
        }
        @keyframes wv {
            0%,100%{ height:6px; }
            50%{ height:44px; }
        }

        /* stats bar */
        .stats {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 2.5rem;
            flex-wrap: wrap;
            background: rgba(139,92,246,.05);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 1.4rem 2.5rem;
            max-width: 580px;
            margin: 0 auto;
        }
        .stat { text-align: center; }
        .stat-v {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.7rem;
            font-weight: 700;
            background: var(--grad-text);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .stat-l {
            font-size: .7rem;
            color: var(--text3);
            text-transform: uppercase;
            letter-spacing: .1em;
            margin-top: .15rem;
        }
        .sdiv { width: 1px; height: 100px; background: var(--border); }

        /* ── FEATURES ── */
        #features { background: linear-gradient(180deg,transparent,rgba(139,92,246,.03) 50%,transparent); }
        .feat-hd { text-align: center; margin-bottom: 3.5rem; }
        .feat-hd .desc { margin: 0 auto; }
        .feat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
            gap: 1.4rem;
        }
        .feat-card {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 1.8rem;
            transition: all .3s;
            position: relative;
            overflow: hidden;
        }
        .feat-card::after {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; height: 1px;
            background: var(--grad);
            opacity: 0;
            transition: opacity .3s;
        }
        .feat-card:hover {
            border-color: var(--border-h);
            transform: translateY(-4px);
            background: rgba(139,92,246,.08);
        }
        .feat-card:hover::after { opacity: 1; }
        .feat-ico {
            width: 46px; height: 46px;
            background: rgba(139,92,246,.14);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.35rem;
            margin-bottom: 1.1rem;
        }
        .feat-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: .5rem;
        }
        .feat-desc { font-size: .875rem; color: var(--text2); line-height: 1.7; }

        /* ── HOW IT WORKS ── */
        #hiw { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
        .hiw-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }
        .steps { display: flex; flex-direction: column; gap: 1.8rem; }
        .step { display: flex; gap: 1.1rem; align-items: flex-start; }
        .step-n {
            flex-shrink: 0;
            width: 38px; height: 38px;
            border-radius: 10px;
            background: rgba(139,92,246,.14);
            border: 1px solid rgba(139,92,246,.3);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 700;
            font-size: .85rem;
            color: var(--purple-l);
        }
        .step-c h3 {
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 600;
            font-size: .95rem;
            margin-bottom: .25rem;
        }
        .step-c p { font-size: .855rem; color: var(--text2); line-height: 1.7; }

        /* mockup */
        .mockup {
            background: var(--bg2);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 1.4rem;
            position: relative;
            overflow: hidden;
        }
        .mockup::before {
            content: '';
            position: absolute;
            top: -60%; left: -40%;
            width: 180%; height: 200%;
            background: radial-gradient(ellipse at center,rgba(139,92,246,.07),transparent 60%);
            pointer-events: none;
        }
        .mkdots { display: flex; gap: .5rem; margin-bottom: 1.3rem; }
        .mkd { width: 10px; height: 10px; border-radius: 50%; }
        .mkd.r { background: #ff5f57; }
        .mkd.y { background: #ffbd2e; }
        .mkd.g { background: #28c840; }
        .mk-tracks { display: flex; flex-direction: column; gap: .7rem; }
        .mk-track {
            background: rgba(139,92,246,.08);
            border: 1px solid rgba(139,92,246,.14);
            border-radius: 10px;
            padding: .75rem 1rem;
            display: flex;
            align-items: center;
            gap: .9rem;
        }
        .mk-play {
            width: 30px; height: 30px;
            background: var(--grad);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: .65rem;
            flex-shrink: 0;
        }
        .mk-info { flex: 1; }
        .mk-name { font-size: .78rem; font-weight: 600; margin-bottom: .15rem; }
        .mk-artist { font-size: .68rem; color: var(--text3); }
        .mk-bars {
            display: flex;
            align-items: center;
            gap: 1.5px;
            height: 22px;
        }
        .mk-bars span {
            display: block;
            width: 2px;
            background: rgba(139,92,246,.6);
            border-radius: 1px;
        }
        .mk-badge {
            font-size: .62rem;
            background: rgba(139,92,246,.18);
            color: var(--purple-l);
            padding: .18rem .5rem;
            border-radius: 100px;
            border: 1px solid rgba(139,92,246,.28);
            white-space: nowrap;
        }

        /* ── TOKEN ── */
        #token { text-align: center; }
        .token-box {
            background: rgba(139,92,246,.05);
            border: 1px solid var(--border);
            border-radius: 18px;
            padding: 2.6rem 2rem;
            margin-bottom: 2rem;
            position: relative;
            overflow: hidden;
            max-width: 860px;
            margin-left: auto;
            margin-right: auto;
        }
        .token-box::before {
            content: '';
            position: absolute;
            top: -80px; left: 50%;
            transform: translateX(-50%);
            width: 420px; height: 420px;
            background: radial-gradient(ellipse,rgba(139,92,246,.14),transparent 60%);
            pointer-events: none;
        }
        .tok-sym {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(2rem, 5vw, 3.8rem);
            font-weight: 650;
            background: var(--grad-text);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
        }
        .tok-p {
            font-size: 1rem;
            color: var(--text2);
            max-width: 480px;
            margin: 0 auto 2rem;
        }
        .pills { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; }
        .pill {
            background: rgba(139,92,246,.1);
            border: 1px solid rgba(139,92,246,.22);
            border-radius: 100px;
            padding: .42rem 1rem;
            font-size: .82rem;
            color: var(--purple-l);
        }
        .tok-feats {
            display: grid;
            grid-template-columns: repeat(3,1fr);
            gap: 1rem;
            max-width: 860px;
            margin: 0 auto;
        }
        .tok-feat {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: 14px;
            padding: 1.4rem;
            text-align: left;
        }
        .tok-feat-ico { font-size: 1.4rem; margin-bottom: .7rem; }
        .tok-feat h4 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: .9rem;
            font-weight: 600;
            margin-bottom: .35rem;
        }
        .tok-feat p { font-size: .8rem; color: var(--text2); line-height: 1.65; }

        /* ── ROADMAP ── */
        #roadmap { border-top: 1px solid var(--border); }
        .rm-grid {
            display: grid;
            grid-template-columns: repeat(5,1fr);
            gap: 1px;
            background: var(--border);
            border: 1px solid var(--border);
            border-radius: 16px;
            overflow: hidden;
            margin-top: 3rem;
        }
        .rm-phase {
            background: var(--bg);
            padding: 1.8rem 1.4rem;
        }
        .rm-phase.active { background: rgba(139,92,246,.055); }
        .rm-ph-lbl {
            font-size: .68rem;
            font-weight: 600;
            letter-spacing: .12em;
            text-transform: uppercase;
            color: var(--text3);
            margin-bottom: .4rem;
        }
        .rm-ph-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: .97rem;
            font-weight: 600;
            margin-bottom: .9rem;
        }
        .status {
            display: inline-flex;
            align-items: center;
            gap: .38rem;
            font-size: .68rem;
            padding: .22rem .56rem;
            border-radius: 100px;
            margin-bottom: .9rem;
        }
        .status::before { content:''; width:5px; height:5px; border-radius:50%; background:currentColor; }
        .status.live { background:rgba(139,92,246,.15); color:var(--purple-l); border:1px solid rgba(139,92,246,.3); }
        .status.live::before { animation: blink 2s infinite; }
        .status.soon { background:rgba(100,116,139,.1); color:var(--text3); border:1px solid rgba(100,116,139,.2); }
        .status.done { background:rgba(34,197,94,.1); color:#4ade80; border:1px solid rgba(34,197,94,.2); }
        .rm-items { list-style:none; display:flex; flex-direction:column; gap:.45rem; }
        .rm-items li {
            font-size: .78rem;
            color: var(--text2);
            display: flex;
            align-items: flex-start;
            gap: .45rem;
        }
        .rm-items li::before { content:'→'; color:var(--purple); flex-shrink:0; }

        /* ── LIFECYCLE ── */
        .lc-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }
        .lc-card {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 2.5rem 2rem;
            position: relative;
            transition: all 0.3s ease;
        }
        .lc-card:hover { border-color: var(--purple); background: rgba(139, 92, 246, 0.04); }
        .lc-num {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.8rem;
            color: var(--purple-l);
            font-weight: 700;
            margin-bottom: 1rem;
            display: block;
            letter-spacing: 0.1em;
        }
        .lc-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #fff;
        }
        .lc-vibe {
            font-size: 0.85rem;
            color: var(--pink);
            font-family: monospace;
            margin-bottom: 1rem;
            display: block;
        }

        /* ── COMMUNITY ── */
        #community { text-align: center; }
        .comm-box {
            background: rgba(139,92,246,.055);
            border: 1px solid var(--border);
            border-radius: 24px;
            padding: 4.5rem 2rem;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
        }
        .comm-box::after {
            content: '';
            position: absolute;
            bottom: -80px; left: 50%;
            transform: translateX(-50%);
            width: 520px; height: 320px;
            background: radial-gradient(ellipse,rgba(139,92,246,.12),transparent 65%);
            pointer-events: none;
        }
        .comm-box .label, .comm-box h2, .comm-box p {
            text-align: center;
            margin-left: auto;
            margin-right: auto;
        }
        .comm-box h2 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(1.8rem, 4vw, 2.8rem);
            font-weight: 700;
            margin-bottom: .9rem;
        }
        .comm-box > p {
            font-size: .97rem;
            color: var(--text2);
            max-width: 440px;
            margin-bottom: 2.2rem;
        }
        .wl-form {
            display: flex;
            gap: .7rem;
            max-width: 420px;
            margin: 0 auto 1.6rem;
        }
        .wl-input {
            flex: 1;
            background: rgba(255,255,255,.05);
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: .72rem 1rem;
            color: #fff;
            font-size: .855rem;
            outline: none;
            transition: border-color .2s;
        }
        .wl-input::placeholder { color: var(--text3); }
        .wl-input:focus { border-color: var(--purple); }
        .wl-btn {
            background: var(--grad);
            color: #fff;
            border: none;
            padding: .72rem 1.2rem;
            border-radius: 10px;
            font-size: .855rem;
            font-weight: 600;
            cursor: pointer;
            white-space: nowrap;
            transition: all .3s;
        }
        .wl-btn:hover { transform:translateY(-1px); box-shadow:0 8px 26px rgba(139,92,246,.4); }
        .wl-error {
            color: #fda4af;
            font-size: .82rem;
            margin: 0 auto 1.2rem;
            max-width: 420px;
            min-height: 1.2rem;
            text-align: center;
        }
        .social-row { display:flex; align-items:center; justify-content:center; gap:.8rem; flex-wrap:wrap; }
        .soc-btn {
            display: inline-flex;
            align-items: center;
            gap: .45rem;
            padding: .62rem 1.2rem;
            border: 1px solid var(--border);
            border-radius: 10px;
            text-decoration: none;
            color: var(--text2);
            font-size: .845rem;
            font-weight: 500;
            transition: all .3s;
        }
        .soc-btn:hover { border-color:var(--border-h); color:#fff; background:rgba(139,92,246,.08); }

        /* ── FOOTER ── */
        footer {
            position: relative; z-index: 1;
            border-top: 1px solid var(--border);
            padding: 3rem 2rem 2rem;
        }
        .foot-inner { max-width:1200px; margin:0 auto; }
        .foot-top {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }
        .foot-brand img { height: 28px; }
        .foot-brand p {
            font-size: .845rem;
            color: var(--text3);
            margin-top: .7rem;
            line-height: 1.75;
            max-width: 240px;
        }
        .sol-badge {
            display: inline-flex;
            align-items: center;
            gap: .38rem;
            font-size: .7rem;
            color: var(--text3);
            margin-top: .5rem;
        }
        .sol-dot {
            width: 8px; height: 8px;
            background: linear-gradient(135deg,#9945ff,#14f195);
            border-radius: 50%;
        }
        .foot-col h4 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: .75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: .1em;
            color: var(--text2);
            margin-bottom: .9rem;
        }
        .foot-col ul { list-style:none; display:flex; flex-direction:column; gap:.55rem; }
        .foot-col ul li a {
            text-decoration: none;
            color: var(--text3);
            font-size: .845rem;
            transition: color .2s;
        }
        .foot-col ul li a:hover { color: #fff; }
        .foot-bot {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 2rem;
            border-top: 1px solid var(--border);
            flex-wrap: wrap;
            gap: 1rem;
        }
        .foot-bot p { font-size: .78rem; color: var(--text3); }
        .foot-bot-links { display:flex; gap:1.4rem; }
        .foot-bot-links a {
            font-size: .78rem;
            color: var(--text3);
            text-decoration: none;
            transition: color .2s;
        }
        .foot-bot-links a:hover { color: #fff; }

        /* ── RESPONSIVE ── */
        @media(max-width:1024px){
            .hiw-grid { grid-template-columns:1fr; }
            .tok-feats { grid-template-columns:repeat(2,1fr); }
            .rm-grid { grid-template-columns:repeat(2,1fr); }
            .foot-top { grid-template-columns:1fr 1fr; }
        }
        @media(max-width:900px){
            .lc-grid { grid-template-columns: 1fr; gap: 1rem; }
            .lc-card { padding: 2rem; }
        }
        @media(max-width:768px){
            .nav-links,.btn-launch { display:none; }
            .hamburger { display:flex; }
            .mockup { display:none; }
            .tok-feats { grid-template-columns:1fr; }
            .rm-grid { grid-template-columns:1fr; }
            .foot-top { grid-template-columns:1fr; gap:2rem; }
            .stats { gap:1.4rem; padding:1.2rem 1.5rem; }
            .wl-form { flex-direction:column; }
        }
