<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>$ANDY - Andy on Robinhood Chain</title>
    <meta name="description" content="Pepe claimed ETH. Brett claimed Base. Andy is home on Robinhood Chain. The final Boy's Club character finds his chain.">
    <meta property="og:title" content="$ANDY - Andy on Robinhood Chain">
    <meta property="og:description" content="Pepe claimed ETH. Brett claimed Base. Andy is home.">
    <meta property="og:image" content="https://andyrobinhood.com/assets/banner.jpg">
    <meta property="og:url" content="https://andyrobinhood.com">
    <meta name="twitter:card" content="summary_large_image">
    <meta name="twitter:title" content="$ANDY - Andy on Robinhood Chain">
    <meta name="twitter:description" content="Pepe claimed ETH. Brett claimed Base. Andy is home.">
    <meta name="twitter:image" content="https://andyrobinhood.com/assets/banner.jpg">
    <link rel="icon" type="image/jpeg" href="/assets/mascot.jpg">
    <link href="https://fonts.googleapis.com/css2?family=Pacifico&family=Inter:wght@400;600;700;900&display=swap" rel="stylesheet">
    <style>
        :root {
            --lime: #C8E616;
            --lime-dark: #a8c200;
            --black: #000000;
            --navy: #1A1A2E;
            --yellow: #F5D623;
            --pink: #E85A8A;
            --white: #FFFFFF;
            --dark-bg: #0d0d0d;
            --card-bg: #161616;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background: var(--dark-bg);
            color: var(--white);
            font-family: 'Inter', sans-serif;
            overflow-x: hidden;
        }

        /* NAVBAR */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(13,13,13,0.95);
            backdrop-filter: blur(20px);
            border-bottom: 2px solid var(--lime);
            padding: 0.8rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .nav-logo img {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            border: 2px solid var(--lime);
        }

        .nav-logo span {
            font-family: 'Pacifico', cursive;
            font-size: 1.6rem;
            color: var(--lime);
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        .nav-links a {
            color: var(--white);
            text-decoration: none;
            font-weight: 700;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: color 0.2s;
        }

        .nav-links a:hover {
            color: var(--lime);
        }

        .nav-links a.nav-active {
            color: var(--lime);
        }

        /* ANDYTV SECTION */
        .andytv {
            padding: 80px 2rem;
            background: var(--black);
            position: relative;
        }

        .andytv-inner {
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
        }

        .andytv-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--lime);
            color: var(--black);
            font-weight: 900;
            font-size: 0.75rem;
            padding: 6px 16px;
            border-radius: 50px;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 1rem;
        }

        .andytv-badge .dot {
            width: 8px;
            height: 8px;
            background: #ff3b3b;
            border-radius: 50%;
            animation: pulse-dot 1.5s ease-in-out infinite;
        }

        @keyframes pulse-dot {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.3; }
        }

        .andytv-player {
            position: relative;
            background: var(--card-bg);
            border: 2px solid #222;
            border-radius: 20px;
            overflow: hidden;
            margin-top: 2rem;
        }

        .andytv-player.active-glow {
            border-color: var(--lime);
            box-shadow: 0 0 40px rgba(200,230,22,0.1);
        }

        .andytv-video-wrap {
            position: relative;
            width: 100%;
            aspect-ratio: 16/9;
            background: #000;
        }

        .andytv-video-wrap video {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: contain;
            background: #000;
        }

        .andytv-info {
            padding: 1.5rem 2rem;
            text-align: left;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .andytv-info-left .ep-label {
            font-size: 0.75rem;
            font-weight: 900;
            color: var(--lime);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 4px;
        }

        .andytv-info-left .ep-title {
            font-size: 1.4rem;
            font-weight: 900;
            color: #fff;
        }

        .andytv-info-left .ep-desc {
            font-size: 0.85rem;
            color: #888;
            margin-top: 6px;
            line-height: 1.5;
            max-width: 600px;
        }

        .andytv-nav {
            display: flex;
            gap: 8px;
            align-items: center;
            flex-shrink: 0;
        }

        .andytv-nav button {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            border: 2px solid #333;
            background: var(--dark-bg);
            color: #fff;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .andytv-nav button:hover {
            border-color: var(--lime);
            color: var(--lime);
        }

        .andytv-nav button:disabled {
            opacity: 0.3;
            cursor: not-allowed;
        }

        .andytv-dots {
            display: flex;
            gap: 8px;
            justify-content: center;
            padding: 0 2rem 1.5rem;
        }

        .andytv-dots button {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            border: none;
            background: #333;
            cursor: pointer;
            transition: all 0.2s;
            padding: 0;
        }

        .andytv-dots button.active {
            background: var(--lime);
            width: 28px;
            border-radius: 5px;
        }

        .andytv-link {
            display: inline-block;
            margin-top: 1.5rem;
            color: var(--lime);
            font-weight: 700;
            font-size: 0.85rem;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: color 0.2s;
        }

        .andytv-link:hover {
            color: #fff;
        }

        @media(max-width:768px) {
            .andytv-info {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }
            .andytv-nav {
                align-self: flex-end;
            }
            .andytv-info-left .ep-title {
                font-size: 1.1rem;
            }
        }

        .nav-links .buy-btn {
            background: var(--lime);
            color: var(--black);
            padding: 10px 24px;
            border-radius: 50px;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.2s;
        }

        .nav-links .buy-btn:hover {
            background: var(--yellow);
            transform: scale(1.05);
        }

        /* HERO */
        .hero {
            min-height: 100vh;
            background: var(--lime);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 120px 2rem 60px;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: repeating-linear-gradient(
                45deg,
                transparent,
                transparent 40px,
                rgba(0,0,0,0.03) 40px,
                rgba(0,0,0,0.03) 80px
            );
        }

        .hero-mascot {
            width: 280px;
            height: 280px;
            border-radius: 50%;
            border: 6px solid var(--black);
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            position: relative;
            z-index: 2;
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }

        .hero h1 {
            font-family: 'Pacifico', cursive;
            font-size: 5rem;
            color: var(--black);
            position: relative;
            z-index: 2;
            margin-top: 1.5rem;
            text-shadow: 3px 3px 0 rgba(0,0,0,0.1);
        }

        .hero h1 .arrow {
            display: inline-block;
            animation: bounce-arrow 1.5s ease-in-out infinite;
        }

        @keyframes bounce-arrow {
            0%, 100% { transform: translateY(0) rotate(-30deg); }
            50% { transform: translateY(-8px) rotate(-30deg); }
        }

        .hero-tagline {
            font-size: 1.5rem;
            font-weight: 900;
            color: var(--black);
            position: relative;
            z-index: 2;
            margin-top: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 3px;
        }

        .hero-sub {
            font-size: 1.1rem;
            color: var(--navy);
            position: relative;
            z-index: 2;
            margin-top: 1rem;
            max-width: 600px;
            font-weight: 600;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
            position: relative;
            z-index: 2;
            flex-wrap: wrap;
            justify-content: center;
        }

        .btn {
            padding: 16px 36px;
            border-radius: 50px;
            font-weight: 900;
            font-size: 1rem;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: all 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-dark {
            background: var(--black);
            color: var(--lime);
            border: 3px solid var(--black);
        }

        .btn-dark:hover {
            background: var(--navy);
            transform: scale(1.05);
        }

        .btn-outline {
            background: transparent;
            color: var(--black);
            border: 3px solid var(--black);
        }

        .btn-outline:hover {
            background: var(--black);
            color: var(--lime);
            transform: scale(1.05);
        }

        /* CA TICKER */
        .ca-bar {
            background: var(--black);
            padding: 1rem 2rem;
            text-align: center;
            border-top: 3px solid var(--lime);
            border-bottom: 3px solid var(--lime);
        }

        .ca-bar span {
            color: var(--lime);
            font-weight: 900;
            font-size: 0.95rem;
            letter-spacing: 1px;
            cursor: pointer;
            transition: color 0.2s;
            word-break: break-all;
        }

        .ca-bar span:hover {
            color: var(--yellow);
        }

        .ca-bar .label {
            color: var(--white);
            margin-right: 10px;
        }

        /* LORE SECTION */
        .lore {
            padding: 100px 2rem;
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
        }

        .section-title {
            font-family: 'Pacifico', cursive;
            font-size: 3rem;
            color: var(--lime);
            margin-bottom: 1.5rem;
        }

        .lore p {
            font-size: 1.15rem;
            line-height: 1.8;
            color: #ccc;
            margin-bottom: 1.5rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .lore strong {
            color: var(--lime);
        }

        /* TRILOGY SECTION */
        .trilogy {
            padding: 80px 2rem;
            background: var(--card-bg);
        }

        .trilogy-inner {
            max-width: 1100px;
            margin: 0 auto;
            text-align: center;
        }

        .trilogy-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }

        .trilogy-card {
            background: var(--dark-bg);
            border: 2px solid #333;
            border-radius: 20px;
            padding: 2.5rem 2rem;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .trilogy-card:hover {
            border-color: var(--lime);
            transform: translateY(-5px);
        }

        .trilogy-card.active {
            border-color: var(--lime);
            box-shadow: 0 0 40px rgba(200,230,22,0.2);
        }

        .trilogy-card .chain-name {
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #666;
            margin-bottom: 0.5rem;
        }

        .trilogy-card .char-emoji {
            font-size: 4rem;
            margin-bottom: 1rem;
        }

        .trilogy-card .char-img {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid #333;
            margin-bottom: 1rem;
        }

        .trilogy-card.active .char-img {
            border-color: var(--lime);
            box-shadow: 0 0 20px rgba(200,230,22,0.3);
        }

        .why-card .icon-img {
            width: 100%;
            border-radius: 12px;
            margin-bottom: 1rem;
            aspect-ratio: 1;
            object-fit: cover;
        }

        .meme-card .meme-real-img {
            width: 100%;
            aspect-ratio: 1;
            object-fit: cover;
            display: block;
        }

        .trilogy-card h3 {
            font-size: 1.8rem;
            font-weight: 900;
            margin-bottom: 0.5rem;
        }

        .trilogy-card .ticker {
            font-family: 'Inter', monospace;
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--lime);
        }

        .trilogy-card .mcap {
            font-size: 0.9rem;
            color: #888;
            margin-top: 0.5rem;
        }

        .trilogy-card.active .chain-name {
            color: var(--lime);
        }

        .trilogy-card.active::after {
            content: 'NOW';
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--lime);
            color: var(--black);
            font-weight: 900;
            font-size: 0.7rem;
            padding: 4px 12px;
            border-radius: 20px;
            letter-spacing: 2px;
        }

        /* WHY ANDY */
        .why {
            padding: 100px 2rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin-top: 3rem;
        }

        .why-card {
            background: var(--card-bg);
            border: 2px solid #222;
            border-radius: 16px;
            padding: 2rem;
            transition: border-color 0.3s;
        }

        .why-card:hover {
            border-color: var(--lime);
        }

        .why-card .icon {
            font-size: 2rem;
            margin-bottom: 0.8rem;
        }

        .why-card h3 {
            font-size: 1.2rem;
            font-weight: 900;
            color: var(--lime);
            margin-bottom: 0.5rem;
        }

        .why-card p {
            color: #999;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* MEME GALLERY */
        .memes {
            padding: 100px 2rem;
            background: var(--card-bg);
        }

        .memes-inner {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .meme-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1rem;
            margin-top: 3rem;
        }

        .meme-card {
            background: var(--dark-bg);
            border: 2px solid #222;
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.3s;
            cursor: pointer;
        }

        .meme-card:hover {
            border-color: var(--lime);
            transform: scale(1.03);
        }

        .meme-card .meme-img {
            width: 100%;
            aspect-ratio: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1rem;
            font-size: 0.85rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .meme-card .meme-caption {
            padding: 0.8rem;
            font-weight: 700;
            font-size: 0.8rem;
            color: var(--lime);
            text-transform: uppercase;
            letter-spacing: 1px;
            border-top: 1px solid #222;
        }

        /* SVG MEME STYLES */
        .meme-svg {
            width: 100%;
            height: 100%;
            border-radius: 12px;
        }

        /* HOW TO BUY */
        .howto {
            padding: 100px 2rem;
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .steps {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }

        .step {
            background: var(--card-bg);
            border: 2px solid #222;
            border-radius: 16px;
            padding: 2rem;
            text-align: center;
        }

        .step .num {
            font-family: 'Pacifico', cursive;
            font-size: 3rem;
            color: var(--lime);
        }

        .step h3 {
            margin-top: 0.5rem;
            font-weight: 900;
            font-size: 1.1rem;
        }

        .step p {
            margin-top: 0.5rem;
            color: #888;
            font-size: 0.9rem;
            line-height: 1.5;
        }

        /* FOOTER */
        footer {
            background: var(--black);
            border-top: 3px solid var(--lime);
            padding: 3rem 2rem;
            text-align: center;
        }

        footer img {
            width: 60px;
            border-radius: 50%;
            border: 2px solid var(--lime);
            margin-bottom: 1rem;
        }

        footer p {
            color: #666;
            font-size: 0.85rem;
            margin-top: 0.5rem;
        }

        footer .footer-links {
            margin-top: 1rem;
            display: flex;
            gap: 2rem;
            justify-content: center;
        }

        footer .footer-links a {
            color: var(--lime);
            text-decoration: none;
            font-weight: 700;
            font-size: 0.9rem;
        }

        footer .disclaimer {
            margin-top: 2rem;
            color: #444;
            font-size: 0.75rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* MOBILE */
        @media (max-width: 768px) {
            .nav-links { display: none; }
            .hero h1 { font-size: 3rem; }
            .hero-tagline { font-size: 1rem; }
            .hero-mascot { width: 200px; height: 200px; }
            .trilogy-grid { grid-template-columns: 1fr; }
            .why-grid { grid-template-columns: 1fr; }
            .meme-grid { grid-template-columns: repeat(2, 1fr); }
            .steps { grid-template-columns: 1fr; }
            .section-title { font-size: 2rem; }
        }

        /* MOBILE NAV */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--lime);
            font-size: 1.8rem;
            cursor: pointer;
        }

        @media (max-width: 768px) {
            .mobile-menu-btn { display: block; }
        }

        /* Scrollbar */
        ::-webkit-scrollbar { width: 8px; }
        ::-webkit-scrollbar-track { background: var(--dark-bg); }
        ::-webkit-scrollbar-thumb { background: var(--lime); border-radius: 4px; }

        /* Smooth scroll */
        html { scroll-behavior: smooth; }

        /* Ticker scroll */
        .ticker-wrap {
            background: var(--lime);
            overflow: hidden;
            white-space: nowrap;
            padding: 8px 0;
        }

        .ticker-content {
            display: inline-block;
            animation: ticker 20s linear infinite;
        }

        .ticker-content span {
            font-weight: 900;
            color: var(--black);
            font-size: 0.85rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin: 0 3rem;
        }

        @keyframes ticker {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
    </style>
</head>
<body>

    <!-- NAVBAR -->
    <nav>
        <div class="nav-logo">
            <img src="/assets/mascot.jpg" alt="Andy">
            <span>Andy</span>
        </div>
        <div class="nav-links">
            <a href="#andytv">AndyTV</a>
            <a href="#lore">Lore</a>
            <a href="#trilogy">Trilogy</a>
            <a href="#memes">Memes</a>
            <a href="#buy">Buy</a>
            <a href="https://x.com/AndyRobinhood" target="_blank">Twitter</a>
            <a href="https://www.tiktok.com/@robinhoodandy" target="_blank">TikTok</a>
            <a href="https://fun.noxa.fi/robinhood/token/0xf7a3b803e1129c2b4711b39df21e898645c6a03c" target="_blank" class="buy-btn">Buy $ANDY</a>
        </div>
        <button class="mobile-menu-btn" onclick="document.querySelector('.nav-links').style.display = document.querySelector('.nav-links').style.display === 'flex' ? 'none' : 'flex'">&#9776;</button>
    </nav>

    <!-- HERO -->
    <section class="hero">
        <img src="/assets/mascot.jpg" alt="Andy" class="hero-mascot">
        <h1>Andy<span class="arrow"> &#8599;</span></h1>
        <div class="hero-tagline">The Final Boy's Club Character Finds His Chain</div>
        <p class="hero-sub">Pepe claimed Ethereum. Brett claimed Base. Andy pulled up his hood and walked straight into Robinhood Chain. No invitation needed. He was always supposed to be here.</p>
        <div class="hero-buttons">
            <a href="https://fun.noxa.fi/robinhood/token/0xf7a3b803e1129c2b4711b39df21e898645c6a03c" target="_blank" class="btn btn-dark">Buy on Noxa</a>
            <a href="https://x.com/AndyRobinhood" target="_blank" class="btn btn-outline">Follow on X</a>
        </div>
    </section>

    <!-- TICKER -->
    <div class="ticker-wrap">
        <div class="ticker-content">
            <span>$ANDY</span><span>Robinhood Chain</span><span>Boy's Club</span><span>Andy Is Home</span><span>$ANDY</span><span>The Hood</span><span>Matt Furie Universe</span><span>$ANDY</span>
            <span>$ANDY</span><span>Robinhood Chain</span><span>Boy's Club</span><span>Andy Is Home</span><span>$ANDY</span><span>The Hood</span><span>Matt Furie Universe</span><span>$ANDY</span>
        </div>
    </div>

    <!-- CA BAR -->
    <div class="ca-bar" id="ca">
        <span class="label">CONTRACT ADDRESS:</span>
        <span id="ca-text" onclick="navigator.clipboard.writeText('0xf7a3b803e1129c2b4711b39df21e898645c6a03c'); this.textContent='COPIED!'; setTimeout(() => this.textContent='0xf7a3b803e1129c2b4711b39df21e898645c6a03c', 2000)">0xf7a3b803e1129c2b4711b39df21e898645c6a03c</span>
    </div>

    <!-- ANDYTV -->
    <section class="andytv" id="andytv">
        <div class="andytv-inner">
            <div class="andytv-badge"><span class="dot"></span> AndyTV</div>
            <h2 class="section-title">AndyTV</h2>
            <p style="color:#888; max-width:550px; margin:0 auto;">The animated series. Watch Andy defend Robinhood Chain.</p>

            <div class="andytv-player active-glow" id="atv-player">
                <div class="andytv-video-wrap">
                    <video id="atv-video" controls playsinline preload="metadata"
                        src="/andytv/episodes/andy_ep1_see_you_at_billions.mp4"></video>
                </div>
                <div class="andytv-info">
                    <div class="andytv-info-left">
                        <div class="ep-label" id="atv-label">Episode 1</div>
                        <div class="ep-title" id="atv-title">See You At Billions</div>
                        <div class="ep-desc" id="atv-desc">Andy gets mocked by Pepe and Brett for chasing the dream. But when the charts light up, nobody's laughing anymore.</div>
                    </div>
                    <div class="andytv-nav">
                        <button id="atv-prev" onclick="atvNav(-1)">&#9664;</button>
                        <button id="atv-next" onclick="atvNav(1)">&#9654;</button>
                    </div>
                </div>
                <div class="andytv-dots" id="atv-dots"></div>
            </div>

            <a href="/andytv/" class="andytv-link">View All Episodes &rarr;</a>
        </div>
    </section>

    <!-- LORE -->
    <section class="lore" id="lore">
        <h2 class="section-title">The Lore</h2>
        <p>In 2005, Matt Furie drew four roommates living their best degenerate lives in a comic called <strong>Boy's Club</strong>. They ate pizza. They played games. They vibed. Four friends, four legends: <strong>Pepe, Brett, Landwolf, and Andy.</strong></p>
        <p>Pepe became the most recognized meme on the internet. He moved to Ethereum and built a $1B+ empire. His roommate Brett saw what was happening and slid onto Base, Coinbase's chain, hitting a $2B+ ATH. Two characters. Two chains. Two movements.</p>
        <p>But there was always a third roommate waiting in the cut. <strong>Andy.</strong> The one in the hoodie. The chill one. The degen who never rushed because he knew his moment would come.</p>
        <p>When Robinhood launched their chain on July 1st, 2025, Andy looked at the logo. <strong>Yellow.</strong> Looked at himself. <strong>Yellow.</strong> Looked at the name. <strong>Robin... Hood.</strong> Looked at his outfit. <strong>A hood.</strong></p>
        <p>He didn't need an invitation. He was already home.</p>
        <p><strong>$ANDY is the cultural token of Robinhood Chain.</strong> Not because someone decided it should be. Because the lore wrote itself.</p>
    </section>

    <!-- TRILOGY -->
    <section class="trilogy" id="trilogy">
        <div class="trilogy-inner">
            <h2 class="section-title">The Trilogy</h2>
            <p style="color:#888; max-width:600px; margin:0 auto;">Every major chain gets a Boy's Club character. That is the pattern. That is the way.</p>
            <div class="trilogy-grid">
                <div class="trilogy-card">
                    <div class="chain-name">Ethereum</div>
                    <img src="/assets/trilogy/pepe.jpeg" alt="Pepe" class="char-img">
                    <h3>Pepe</h3>
                    <div class="ticker">$PEPE</div>
                    <div class="mcap">ATH: $11B+ Market Cap</div>
                </div>
                <div class="trilogy-card">
                    <div class="chain-name">Base</div>
                    <img src="/assets/trilogy/brett.png" alt="Brett" class="char-img">
                    <h3>Brett</h3>
                    <div class="ticker">$BRETT</div>
                    <div class="mcap">ATH: $2.3B+ Market Cap</div>
                </div>
                <div class="trilogy-card active">
                    <div class="chain-name">Robinhood Chain</div>
                    <img src="/assets/mascot.jpg" alt="Andy" class="char-img">
                    <h3>Andy</h3>
                    <div class="ticker">$ANDY</div>
                    <div class="mcap">Your entry is now.</div>
                </div>
            </div>
        </div>
    </section>

    <!-- WHY ANDY -->
    <section class="why" id="why">
        <h2 class="section-title" style="text-align:center;">Why Andy</h2>
        <div class="why-grid">
            <div class="why-card">
                <img src="/assets/why/color_match.png" alt="Color Match" class="icon-img">
                <h3>Color Match</h3>
                <p>Andy is yellow. Robinhood is yellow. The brand alignment was not planned. It was destiny. Every detail lines up visually.</p>
            </div>
            <div class="why-card">
                <img src="/assets/why/hood_culture.png" alt="Hood Culture" class="icon-img">
                <h3>Hood Culture</h3>
                <p>Andy wears a hood. The chain is called Robinhood. You cannot make this up. The meme writes itself. The lore is self-evident.</p>
            </div>
            <div class="why-card">
                <img src="/assets/why/proven_pattern.png" alt="Proven Pattern" class="icon-img">
                <h3>Proven Pattern</h3>
                <p>Pepe on ETH hit $11B. Brett on Base hit $2.3B. Each Boy's Club character that claims a chain creates a movement. Andy is next.</p>
            </div>
            <div class="why-card">
                <img src="/assets/why/first_mover.png" alt="First Mover" class="icon-img">
                <h3>First Mover</h3>
                <p>Robinhood Chain launched July 1st. The ecosystem is brand new. $425M TVS in the first week. Andy is here from day one. Early early.</p>
            </div>
            <div class="why-card">
                <img src="/assets/why/users_24m.png" alt="24M+ Users" class="icon-img">
                <h3>24M+ Users</h3>
                <p>Robinhood has over 24 million retail users. When they discover their chain has a culture layer, Andy is the first thing they will see.</p>
            </div>
            <div class="why-card">
                <img src="/assets/why/canon_lore.png" alt="Canon Lore" class="icon-img">
                <h3>Canon Lore</h3>
                <p>Andy is not a derivative. He is an original Matt Furie character from Boy's Club. Same comic, same house, same lore as Pepe and Brett. This is real.</p>
            </div>
        </div>
    </section>

    <!-- MEME GALLERY -->
    <section class="memes" id="memes">
        <div class="memes-inner">
            <h2 class="section-title">Meme Vault</h2>
            <p style="color:#888; margin-bottom:0.5rem;">Community art. Save them. Share them. Spread the word.</p>
            <div class="meme-grid">
                <!-- MEME 1 -->
                <div class="meme-card">
                    <img src="/assets/memes/meme_01.png" alt="Andy Got The Hood" class="meme-real-img">
                    <div class="meme-caption">Andy Got The Hood</div>
                </div>

                <!-- MEME 2 -->
                <div class="meme-card">
                    <img src="/assets/memes/meme_02.png" alt="Quiet Ones Eat First" class="meme-real-img">
                    <div class="meme-caption">Quiet Ones Eat First</div>
                </div>

                <!-- MEME 3 -->
                <div class="meme-card">
                    <img src="/assets/memes/meme_03.png" alt="The Yellow Pill" class="meme-real-img">
                    <div class="meme-caption">The Yellow Pill</div>
                </div>

                <!-- MEME 4 -->
                <div class="meme-card">
                    <img src="/assets/memes/meme_04.png" alt="I Live Here" class="meme-real-img">
                    <div class="meme-caption">I Live Here</div>
                </div>

                <!-- MEME 5 -->
                <div class="meme-card">
                    <img src="/assets/memes/meme_05.png" alt="$425M Week One" class="meme-real-img">
                    <div class="meme-caption">$425M Week One</div>
                </div>

                <!-- MEME 6 -->
                <div class="meme-card">
                    <img src="/assets/memes/meme_06.png" alt="It Was Written" class="meme-real-img">
                    <div class="meme-caption">It Was Written</div>
                </div>

                <!-- MEME 7 -->
                <div class="meme-card">
                    <img src="/assets/memes/meme_07.png" alt="Hood Life" class="meme-real-img">
                    <div class="meme-caption">Hood Life</div>
                </div>

                <!-- MEME 8 -->
                <div class="meme-card">
                    <img src="/assets/memes/meme_08.png" alt="Chart Goes Up Forever" class="meme-real-img">
                    <div class="meme-caption">Chart Goes Up Forever</div>
                </div>

                <!-- MEME 9 -->
                <div class="meme-card">
                    <img src="/assets/memes/meme_09.png" alt="The Trilogy Is Complete" class="meme-real-img">
                    <div class="meme-caption">The Trilogy Is Complete</div>
                </div>

                <!-- MEME 10 -->
                <div class="meme-card">
                    <img src="/assets/memes/meme_10.png" alt="Early Is Everything" class="meme-real-img">
                    <div class="meme-caption">Early Is Everything</div>
                </div>

                <!-- MEME 11 -->
                <div class="meme-card">
                    <img src="/assets/memes/meme_11.png" alt="Waits For No One" class="meme-real-img">
                    <div class="meme-caption">Waits For No One</div>
                </div>

                <!-- MEME 12 -->
                <div class="meme-card">
                    <img src="/assets/memes/meme_12.png" alt="The Prophecy" class="meme-real-img">
                    <div class="meme-caption">The Prophecy</div>
                </div>
            </div>
        </div>
    </section>

    <!-- HOW TO BUY -->
    <section class="howto" id="buy">
        <h2 class="section-title">How to Buy</h2>
        <div class="steps">
            <div class="step">
                <div class="num">1</div>
                <h3>Bridge ETH</h3>
                <p>Bridge ETH to Robinhood Chain (Chain ID: 4663) using the official Robinhood bridge or LayerZero.</p>
            </div>
            <div class="step">
                <div class="num">2</div>
                <h3>Go to Noxa</h3>
                <p>Visit fun.noxa.fi/robinhood and connect your wallet. This is the launchpad where $ANDY lives.</p>
            </div>
            <div class="step">
                <div class="num">3</div>
                <h3>Buy $ANDY</h3>
                <p>Search for $ANDY, click buy, set your amount, confirm. You are now in the hood. Welcome home.</p>
            </div>
        </div>
    </section>

    <!-- FOOTER -->
    <footer>
        <img src="/assets/mascot.jpg" alt="Andy">
        <div class="footer-links">
            <a href="https://x.com/AndyRobinhood" target="_blank">Twitter / X</a>
            <a href="https://www.tiktok.com/@robinhoodandy" target="_blank">TikTok</a>
            <a href="https://fun.noxa.fi/robinhood/token/0xf7a3b803e1129c2b4711b39df21e898645c6a03c" target="_blank">Buy on Noxa</a>
        </div>
        <p>$ANDY on Robinhood Chain. A Boy's Club original by Matt Furie.</p>
        <p>Pepe claimed ETH. Brett claimed Base. Andy is home.</p>
        <p class="disclaimer">$ANDY is a meme coin with no intrinsic value or expectation of financial return. It exists purely for entertainment purposes. Do your own research before making any financial decisions.</p>
    </footer>

    <!-- ANDYTV SLIDESHOW JS -->
    <script>
    (function(){
        const episodes = [
            {
                src: '/andytv/episodes/andy_ep1_see_you_at_billions.mp4',
                label: 'Episode 1',
                title: 'See You At Billions',
                desc: 'Andy gets mocked by Pepe and Brett for chasing the dream. But when the charts light up, nobody\'s laughing anymore.'
            },
            {
                src: '/andytv/episodes/andy_ep2_heavens_gate.mp4',
                label: 'Episode 2',
                title: "Heaven's Gate",
                desc: 'Andy encounters legendary figures on his blockchain journey. Harambe, Doge, Steve Irwin. But the real test is ahead.'
            },
            {
                src: '/andytv/episodes/andy_ep3_watch_me_work.mp4',
                label: 'Episode 3',
                title: 'Watch Me Work',
                desc: 'Ernie the Giant Chicken crashes in. Alon the King Jeet arrives. Andy steps up as the defender of Robinhood Chain.'
            },
            {
                src: '/andytv/episodes/andy_ep4_grind.mp4',
                label: 'Episode 4',
                title: 'Grind',
                desc: 'Andy\'s ego peaks. He levitates like a god. Then reality hits. Steve Irwin returns. The grind begins.'
            },
            {
                src: '/andytv/episodes/ep5_fries_before_billions_v5b.mp4',
                label: 'Episode 5',
                title: 'Fries Before Billions',
                desc: 'Andy works the McDonald\'s fryer with CEO energy. Wojak gets liquidated. Pepe and Brett film him. Andy delivers the comeback.'
            },
            {
                src: '/andytv/episodes/andy_ep6_the_call.mp4',
                label: 'Episode 6 — NEW',
                title: 'The Call',
                desc: 'Every coin on Robinhood Chain pumps EXCEPT $ANDY. Harambe, Doge, Pepe, Brett, Alon, and GigaChad all show up at McDonald\'s. Andy stays at the fryer.'
            }
        ];

        let cur = 0;
        const vid = document.getElementById('atv-video');
        const label = document.getElementById('atv-label');
        const title = document.getElementById('atv-title');
        const desc = document.getElementById('atv-desc');
        const prev = document.getElementById('atv-prev');
        const next = document.getElementById('atv-next');
        const dotsWrap = document.getElementById('atv-dots');

        // build dots
        episodes.forEach((_, i) => {
            const d = document.createElement('button');
            d.setAttribute('aria-label', 'Episode ' + (i+1));
            if (i === 0) d.classList.add('active');
            d.onclick = () => goTo(i);
            dotsWrap.appendChild(d);
        });

        function goTo(i) {
            cur = i;
            const ep = episodes[cur];
            vid.pause();
            vid.src = ep.src;
            vid.load();
            label.textContent = ep.label;
            title.textContent = ep.title;
            desc.textContent = ep.desc;
            prev.disabled = cur === 0;
            next.disabled = cur === episodes.length - 1;
            dotsWrap.querySelectorAll('button').forEach((d, j) => {
                d.classList.toggle('active', j === cur);
            });
        }

        window.atvNav = function(dir) {
            const n = cur + dir;
            if (n >= 0 && n < episodes.length) goTo(n);
        };

        // auto-advance when video ends
        vid.addEventListener('ended', () => {
            if (cur < episodes.length - 1) {
                goTo(cur + 1);
                vid.play();
            }
        });

        // init
        goTo(0);
    })();
    </script>

</body>
</html>
