/* ═══════════════════════════════════════
   colors
═══════════════════════════════════════ */
:root {
    --y: #f7d46e;
    --yd: #e0a820;
    --yl: #fff4c2;
    --blk: #18100a;
    --brn: #3d1f08;
    --org: #e8820c;
    --org2: #f4a030;
    --wht: #fffef5;
    --red: #d93b1a;
}

/* ═══════════════════════════════════════
   RESET
═══════════════════════════════════════ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    background: var(--y);
    color: var(--blk);
    overflow-x: hidden;
}

/* ═══════════════════════════════════════
   CURSOR
═══════════════════════════════════════ */
* {
    cursor: none !important;
}

#cur {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99999;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--blk);
    border: 2.5px solid var(--y);
    transform: translate(-50%, -50%);
    transition: width .14s, height .14s, background .14s;
    mix-blend-mode: multiply;
}

#cur.h {
    width: 38px;
    height: 38px;
    background: var(--y);
    border-color: var(--blk);
}

@media(hover:none) {
    #cur {
        display: none;
    }
}

/* ═══════════════════════════════════════
   PAW RAIN  
═══════════════════════════════════════ */
/* #paw-rain {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
} */

.paw-drop {
    position: absolute;
    top: -100px;
    animation: pawfall linear infinite;
    will-change: transform;
}

.paw-drop img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: block;
}

@keyframes pawfall {
    0% {
        transform: translateY(0) rotate(-10deg);
        opacity: 0;
    }

    6% {
        opacity: 1;
    }

    92% {
        opacity: .6;
    }

    100% {
        transform: translateY(115vh) rotate(25deg);
        opacity: 0;
    }
}

/* ═══════════════════════════════════════
   GRAIN
═══════════════════════════════════════ */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9997;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.028'/%3E%3C/svg%3E");
}

/* ═══════════════════════════════════════
   HATCH PATTERN
═══════════════════════════════════════ */
.hatch::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: repeating-linear-gradient(45deg, transparent, transparent 22px,
            rgba(26, 16, 8, .032) 22px, rgba(26, 16, 8, .032) 23px);
}

/* ═══════════════════════════════════════
   NAV
═══════════════════════════════════════ */
#nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    background: var(--blk);
    border-bottom: 3px solid var(--y);
    transition: box-shadow .3s;
}

#nav.scrolled {
    box-shadow: 0 4px 28px rgba(0, 0, 0, .55);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav-logo img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--y);
    object-fit: cover;
    flex-shrink: 0;
}

.nav-logo-text {
    font-family: 'Boogaloo', cursive;
    font-size: 1.85rem;
    color: var(--y);
    letter-spacing: 3px;
    /* crisp orange shadow — black bg so orange pops */
    text-shadow: 2px 2px 0 var(--org);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
}

.nav-links a {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: .75rem;
    color: rgba(247, 212, 110, .6);
    text-decoration: none;
    padding: 7px 12px;
    border-radius: 8px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color .2s, background .2s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--y);
    background: rgba(247, 212, 110, .1);
}

.nav-cta {
    background: var(--y) !important;
    color: var(--blk) !important;
    font-weight: 900 !important;
    border-radius: 10px !important;
    padding: 9px 18px !important;
    box-shadow: 3px 3px 0 var(--yd) !important;
}

.nav-cta:hover {
    transform: translate(-2px, -2px) !important;
    box-shadow: 5px 5px 0 var(--yd) !important;
}

/* HAMBURGER */
.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer !important;
}

.nav-burger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--y);
    border-radius: 2px;
    transition: transform .3s, opacity .3s;
}

.nav-burger.open span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.nav-burger.open span:nth-child(2) {
    opacity: 0;
}

.nav-burger.open span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* MOBILE MENU OVERLAY */
#mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    top: 64px;
    z-index: 999;
    background: var(--blk);
    padding: 32px 28px;
    flex-direction: column;
    gap: 6px;
    border-top: 3px solid var(--y);
}

#mobile-menu.open {
    display: flex;
}

#mobile-menu a {
    font-family: 'Boogaloo', cursive;
    font-size: 1.7rem;
    color: rgba(247, 212, 110, .7);
    text-decoration: none;
    letter-spacing: 2px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(247, 212, 110, .08);
    transition: color .2s;
}

#mobile-menu a:hover {
    color: var(--y);
}

#mobile-menu .mm-cta {
    margin-top: 16px;
    background: var(--y);
    color: var(--blk) !important;
    border-radius: 12px;
    padding: 14px 24px !important;
    text-align: center;
    border-bottom: none;
    box-shadow: 4px 4px 0 var(--yd);
    font-size: 1.4rem;
}

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 60px 70px;
    position: relative;
    overflow: hidden;
    background: var(--y);
}

/* diagonal stripe */
#hero::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: repeating-linear-gradient(-45deg, transparent, transparent 26px,
            rgba(26, 16, 8, .03) 26px, rgba(26, 16, 8, .03) 27px);
}

.hero-wrap {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--blk);
    padding: 6px 16px 6px 10px;
    border-radius: 30px;
    margin-bottom: 24px;
    border: 2px solid rgba(247, 212, 110, .25);
}

.hero-dot {
    width: 8px;
    height: 8px;
    background: #2fd370;
    border-radius: 50%;
    animation: blink 1.6s ease-in-out infinite;
    box-shadow: 0 0 8px #2fd370;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .2
    }
}

.hero-pill-txt {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: .72rem;
    color: var(--y);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ─ TITLE  ─ */
.hero-title {
    font-family: 'Boogaloo', cursive;
    font-size: clamp(6rem, 14vw, 11rem);
    line-height: .88;
    letter-spacing: 4px;
    margin-bottom: 22px;
    color: var(--blk);
    text-shadow:
        4px 4px 0 var(--org),
        8px 8px 0 rgba(26, 16, 8, .18);
}

.hero-sub {
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--brn);
    max-width: 400px;
    line-height: 1.8;
    margin-bottom: 28px;
}

.hero-sub strong {
    color: var(--blk);
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
}

.htag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--blk);
    color: var(--y);
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: .7rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 7px 13px;
    border-radius: 8px;
    border: 1.5px solid rgba(247, 212, 110, .12);
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-dark {
    font-family: 'Boogaloo', cursive;
    font-size: 1.3rem;
    letter-spacing: 2px;
    padding: 14px 34px;
    border-radius: 14px;
    background: var(--blk);
    color: var(--y);
    text-decoration: none;
    display: inline-block;
    box-shadow: 5px 5px 0 var(--org);
    transition: transform .15s, box-shadow .15s;
}

.btn-dark:hover {
    transform: translate(-3px, -3px);
    box-shadow: 8px 8px 0 var(--org);
}

.btn-outline {
    font-family: 'Boogaloo', cursive;
    font-size: 1.3rem;
    letter-spacing: 2px;
    padding: 13px 32px;
    border-radius: 14px;
    background: transparent;
    color: var(--blk);
    text-decoration: none;
    display: inline-block;
    border: 3px solid var(--blk);
    box-shadow: 5px 5px 0 rgba(26, 16, 8, .16);
    transition: transform .15s, box-shadow .15s, background .15s;
}

.btn-outline:hover {
    transform: translate(-3px, -3px);
    box-shadow: 8px 8px 0 rgba(26, 16, 8, .2);
    background: var(--yl);
}

/* hero dog */
.hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.dog-stage {
    position: relative;
    width: 440px;
    height: 440px;
}

.dog-blob {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -56%);
    width: 310px;
    height: 310px;
    background: var(--yl);
    border-radius: 60% 40% 52% 48% / 48% 55% 45% 52%;
    border: 7px solid var(--blk);
    box-shadow: 8px 8px 0 var(--blk);
    overflow: hidden;
    animation: dogFloat 3.2s ease-in-out infinite;
}

@keyframes dogFloat {

    0%,
    100% {
        transform: translate(-50%, -56%) translateY(0) rotate(-.8deg);
    }

    50% {
        transform: translate(-50%, -56%) translateY(-15px) rotate(.8deg);
    }
}

.dog-blob img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.dog-blob-fb {
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
}

.dog-shadow {
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    width: 240px;
    height: 26px;
    background: radial-gradient(ellipse, rgba(26, 16, 8, .2) 0%, transparent 70%);
    border-radius: 50%;
    animation: shadowP 3.2s ease-in-out infinite;
}

@keyframes shadowP {

    0%,
    100% {
        transform: translateX(-50%) scaleX(1)
    }

    50% {
        transform: translateX(-50%) scaleX(.82)
    }
}

.chip {
    position: absolute;
    background: var(--blk);
    color: var(--y);
    border: 2.5px solid var(--y);
    border-radius: 10px;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: .7rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 7px 13px;
    white-space: nowrap;
    box-shadow: 4px 4px 0 var(--org);
}

.c1 {
    top: 36px;
    right: 22px;
    animation: chipF 3s ease-in-out infinite;
}

.c2 {
    bottom: 96px;
    left: -6px;
    animation: chipF 3s ease-in-out 1.1s infinite;
}

.c3 {
    bottom: 30px;
    right: 44px;
    animation: chipF 3s ease-in-out 2s infinite;
}

@keyframes chipF {

    0%,
    100% {
        transform: translateY(0) rotate(-.8deg);
    }

    50% {
        transform: translateY(-8px) rotate(.8deg);
    }
}

.dstar {
    position: absolute;
    animation: dstarA 3.5s ease-in-out infinite;
}

@keyframes dstarA {

    0%,
    100% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.2) rotate(12deg)
    }
}

/* ═══════════════════════════════════════
   TICKER
═══════════════════════════════════════ */
.ticker {
    overflow: hidden;
    background: var(--blk);
    border-top: 3px solid var(--y);
    border-bottom: 3px solid var(--y);
    padding: 12px 0;
    white-space: nowrap;
}

.ticker-track {
    display: inline-block;
    animation: tickA 26s linear infinite;
}

@keyframes tickA {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

.tick-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-right: 40px;
    font-family: 'Boogaloo', cursive;
    font-size: 1.05rem;
    letter-spacing: 2.5px;
    color: var(--y);
}

.tick-dot {
    width: 7px;
    height: 7px;
    background: var(--org2);
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

/* ═══════════════════════════════════════
   ABOUT
═══════════════════════════════════════ */
#about {
    background: var(--blk);
    position: relative;
    overflow: hidden;
}

.about-ghost {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Boogaloo', cursive;
    font-size: 28vw;
    color: rgba(247, 212, 110, .025);
    pointer-events: none;
    white-space: nowrap;
    user-select: none;
    letter-spacing: -4px;
}

/* header block */
.about-head {
    padding: 80px 60px 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.eyebrow {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: .68rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(247, 212, 110, .45);
    margin-bottom: 14px;
}

.eyebrow::before {
    content: '';
    width: 22px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
}

/* ─ ABOUT TITLE  ─ */
.about-title {
    font-family: 'Boogaloo', cursive;
    font-size: clamp(3.8rem, 9vw, 7.5rem);
    line-height: .92;
    letter-spacing: 2px;
    color: var(--y);
    text-shadow: 5px 5px 0 var(--org);
}

.about-title .line2 {
    display: block;
    padding-left: clamp(10px, 3vw, 40px);
    -webkit-text-stroke: 3px var(--y);
    color: transparent;
    text-shadow: none;
}

.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
    padding: 0 60px 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.about-intro-col {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: rgba(255, 254, 245, .8);
    line-height: 1.88;
}

.about-intro-col strong {
    color: var(--y);
}

.about-intro-col .big-stmt {
    font-family: 'Boogaloo', cursive;
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    color: var(--y);
    letter-spacing: 1px;
    line-height: 1.2;
    display: block;
    margin-top: 18px;
}

.about-quote {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px 40px;
    position: relative;
    z-index: 2;
}

.quote-inner {
    background: rgba(247, 212, 110, .06);
    border-left: 5px solid var(--y);
    border-radius: 0 16px 16px 0;
    padding: 26px 34px;
}

.quote-inner p {
    font-family: 'Boogaloo', cursive;
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    color: var(--y);
    letter-spacing: 1px;
    line-height: 1.25;
}

/* 3 cards */
.about-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px 40px;
    position: relative;
    z-index: 2;
}

.about-card {
    background: rgba(247, 212, 110, .05);
    border: 1.5px solid rgba(247, 212, 110, .1);
    border-radius: 18px;
    padding: 26px 22px;
    transition: border-color .25s, background .25s, transform .2s;
}

.about-card:hover {
    border-color: rgba(247, 212, 110, .28);
    background: rgba(247, 212, 110, .08);
    transform: translateY(-4px);
}

.about-card-num {
    font-family: 'Boogaloo', cursive;
    font-size: 3.5rem;
    color: rgba(247, 212, 110, .1);
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: 2px;
}

.about-card h4 {
    font-family: 'Boogaloo', cursive;
    font-size: 1.25rem;
    color: var(--y);
    letter-spacing: 1.5px;
    margin-bottom: 9px;
}

.about-card p {
    font-size: .9rem;
    font-weight: 700;
    color: rgba(255, 254, 245, .7);
    line-height: 1.7;
}

/* wow + nasdaq row */
.about-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 60px 80px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(247, 212, 110, .08);
}

.wow-block {}

.wow-txt {
    font-family: 'Boogaloo', cursive;
    font-size: clamp(1.8rem, 4.5vw, 3.5rem);
    color: var(--org2);
    letter-spacing: 3px;
    line-height: 1.15;
    display: block;
    margin-bottom: 24px;
}

.narr-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--y);
    color: var(--blk);
    font-family: 'Boogaloo', cursive;
    font-size: 1.1rem;
    letter-spacing: 2px;
    padding: 12px 26px;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 4px 4px 0 var(--org);
    transition: transform .15s, box-shadow .15s;
}

.narr-btn:hover {
    transform: translate(-3px, -3px);
    box-shadow: 7px 7px 0 var(--org);
}

/* NASDAQ — bigger card */
.nasdaq-link {
    display: block;
    text-decoration: none;
    border-radius: 18px;
    background: rgba(247, 212, 110, .05);
    border: 2px solid rgba(247, 212, 110, .12);
    padding: 14px;
    width: clamp(220px, 22vw, 300px);
    flex-shrink: 0;
    transition: border-color .25s, transform .2s, box-shadow .2s;
}

.nasdaq-link:hover {
    border-color: var(--y);
    transform: translate(-4px, -4px) rotate(-1deg);
    box-shadow: 8px 8px 0 var(--org);
}

.nasdaq-img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    background: #241208;
}

.nasdaq-ph {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 12px;
    background: #241208;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.nasdaq-ph-txt {
    font-family: 'Boogaloo', cursive;
    font-size: .95rem;
    color: rgba(247, 212, 110, .3);
    letter-spacing: 1.5px;
    text-align: center;
    padding: 0 10px;
}

.nasdaq-chip {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: .66rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(247, 212, 110, .45);
    margin-top: 10px;
    text-align: center;
    display: block;
}

/* ═══════════════════════════════════════
   TOKENOMICS
═══════════════════════════════════════ */
#tokenomics {
    background: var(--y);
    padding: 100px 60px;
    position: relative;
    overflow: hidden;
}

.toki-wrap {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.toki-eyebrow {
    color: rgba(26, 16, 8, .45);
}

.toki-title {
    font-family: 'Boogaloo', cursive;
    font-size: clamp(3.5rem, 8vw, 6rem);
    color: var(--blk);
    letter-spacing: 2px;
    line-height: .9;
    text-shadow: 4px 4px 0 rgba(26, 16, 8, .15);
    margin-bottom: 36px;
}

/* CA box */
.ca-wrap {
    background: var(--blk);
    border-radius: 16px;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    box-shadow: 6px 6px 0 var(--org);
    margin-bottom: 32px;
}

.ca-left {
    flex: 1;
    min-width: 0;
}

.ca-lbl {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: .63rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(247, 212, 110, .35);
    display: block;
    margin-bottom: 4px;
}

.ca-val {
    font-family: 'Nunito', monospace;
    font-weight: 800;
    font-size: clamp(.6rem, 1.15vw, .82rem);
    color: var(--y);
    word-break: break-all;
    letter-spacing: .3px;
    display: block;
}

.ca-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.ca-copy {
    background: var(--y);
    color: var(--blk);
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: .76rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 10px 18px;
    border-radius: 10px;
    border: 2.5px solid var(--yd);
    box-shadow: 3px 3px 0 var(--yd);
    cursor: pointer !important;
    transition: transform .15s, box-shadow .15s;
}

.ca-copy:hover {
    transform: translate(-2px, -2px);
    box-shadow: 5px 5px 0 var(--yd);
}

.ca-view {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: .72rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: rgba(247, 212, 110, .5);
    text-decoration: none;
    white-space: nowrap;
    transition: color .2s;
}

.ca-view:hover {
    color: var(--y);
}

/* ─ GRID: 3 equal + 1 full ─ */
.toki-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.tk {
    background: var(--blk);
    border-radius: 18px;
    padding: 32px 26px;
    box-shadow: 5px 5px 0 rgba(26, 16, 8, .18);
    transition: transform .2s, box-shadow .2s;
    position: relative;
    overflow: hidden;
    min-width: 0;
}

.tk:hover {
    transform: translate(-3px, -3px);
    box-shadow: 8px 8px 0 rgba(26, 16, 8, .2);
}

.tk-icon {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid rgba(247, 212, 110, .14);
    margin-bottom: 18px;
    flex-shrink: 0;
}

.tk-num {
    font-family: 'Boogaloo', cursive;
    font-size: 3.2rem;
    color: var(--y);
    letter-spacing: 1px;
    line-height: 1;
    margin-bottom: 5px;
    display: block;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, .55);
}

.tk-lbl {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: .66rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(247, 212, 110, .38);
    display: block;
}

/* yellow highlight card */
.tk.hi {
    background: var(--y);
}

.tk.hi .tk-num {
    color: var(--blk);
    text-shadow: 2px 2px 0 rgba(26, 16, 8, .2);
}

.tk.hi .tk-lbl {
    color: rgba(26, 16, 8, .45);
}

.tk.hi .tk-icon {
    border-color: rgba(26, 16, 8, .12);
}

/* full-width stat bar */
.tk.full {
    grid-column: 1/-1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 26px 32px;
    flex-wrap: wrap;
    /* allow wrap on small screens */
}

.tk.full .tk-num {
    font-size: 2.4rem;
    margin-bottom: 0;
}

.tk-stats {
    display: flex;
}

.tk-stat {
    text-align: center;
    padding: 0 26px;
    border-right: 1px solid rgba(247, 212, 110, .1);
}

.tk-stat:last-child {
    border-right: none;
}

.tk-stat .tk-num {
    font-size: 1.8rem;
}

/* ═══════════════════════════════════════
   HOW TO BUY
═══════════════════════════════════════ */
#howtobuy {
    background: var(--blk);
    padding: 100px 60px;
    position: relative;
    overflow: hidden;
}

.htb-eyebrow {
    color: rgba(247, 212, 110, .45);
}

.htb-title {
    font-family: 'Boogaloo', cursive;
    font-size: clamp(3.5rem, 8vw, 6rem);
    color: var(--y);
    letter-spacing: 2px;
    line-height: .9;
    text-shadow: 4px 4px 0 var(--org);
    margin-bottom: 52px;
}

.htb-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.htb-step {
    background: rgba(247, 212, 110, .05);
    border: 2px solid rgba(247, 212, 110, .1);
    border-radius: 18px;
    padding: 28px 18px 24px;
    text-align: center;
    transition: border-color .25s, background .25s, transform .25s, box-shadow .25s;
}

.htb-step:hover {
    border-color: rgba(247, 212, 110, .3);
    background: rgba(247, 212, 110, .08);
    transform: translateY(-5px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, .3);
}

.htb-num {
    width: 28px;
    height: 28px;
    background: var(--y);
    color: var(--blk);
    font-family: 'Boogaloo', cursive;
    font-size: .95rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2.5px solid var(--blk);
    box-shadow: 2px 2px 0 var(--org);
    margin: 0 auto 16px;
}

.htb-img {
    width: 68px;
    height: 68px;
    object-fit: contain;
    display: block;
    margin: 0 auto 16px;
    border-radius: 16px;
    background: rgba(247, 212, 110, .07);
    border: 2px solid rgba(247, 212, 110, .12);
    padding: 9px;
}

.htb-step h3 {
    font-family: 'Boogaloo', cursive;
    font-size: 1.25rem;
    color: var(--y);
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.htb-step p {
    font-size: .84rem;
    font-weight: 700;
    color: rgba(255, 254, 245, .65);
    line-height: 1.65;
}

.htb-step a {
    color: rgba(247, 212, 110, .8);
}

/* ═══════════════════════════════════════
   CHART
═══════════════════════════════════════ */
#chart {
    background: var(--y);
    padding: 100px 60px;
    position: relative;
    overflow: hidden;
}

.chart-wrap {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.chart-eyebrow {
    color: rgba(26, 16, 8, .45);
}

.chart-title {
    font-family: 'Boogaloo', cursive;
    font-size: clamp(3.5rem, 8vw, 6rem);
    color: var(--blk);
    letter-spacing: 2px;
    line-height: .9;
    text-shadow: 4px 4px 0 rgba(26, 16, 8, .14);
    margin-bottom: 40px;
}

/* DEX panel — full width */
.dex-panel {
    background: var(--blk);
    border-radius: 20px;
    border: 4px solid var(--blk);
    overflow: hidden;
    box-shadow: 8px 8px 0 rgba(26, 16, 8, .2);
    margin-bottom: 24px;
}

.dex-top {
    background: var(--y);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dex-top-name {
    font-family: 'Boogaloo', cursive;
    font-size: 1.2rem;
    letter-spacing: 2px;
    color: var(--blk);
}

.dex-top-link {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: .7rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--blk);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    opacity: .55;
    transition: opacity .2s;
}

.dex-top-link:hover {
    opacity: 1;
}

#dex-frame {
    width: 100%;
    height: 500px;
    border: none;
    display: block;
}

/* Uniswap row */
.uni-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
}

.uni-info {
    padding: 8px 0;
}

.uni-info h3 {
    font-family: 'Boogaloo', cursive;
    font-size: clamp(2.2rem, 4vw, 3rem);
    color: var(--blk);
    letter-spacing: 1.5px;
    line-height: 1;
    text-shadow: 3px 3px 0 rgba(26, 16, 8, .14);
    margin-bottom: 14px;
}

.uni-info p {
    font-size: .9rem;
    font-weight: 700;
    color: var(--brn);
    line-height: 1.7;
    margin-bottom: 16px;
}

/* inline copyable CA inside uniswap section */
.uni-ca {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    background: var(--blk);
    border-radius: 12px;
    padding: 12px 16px;
    margin-bottom: 20px;
}

.uni-ca-val {
    font-family: 'Nunito', monospace;
    font-weight: 800;
    font-size: clamp(.55rem, 1.1vw, .76rem);
    color: var(--y);
    word-break: break-all;
    flex: 1;
    min-width: 0;
}

.uni-ca-copy {
    flex-shrink: 0;
    background: var(--y);
    color: var(--blk);
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: .7rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 7px 14px;
    border-radius: 8px;
    border: 2px solid var(--yd);
    cursor: pointer !important;
    box-shadow: 2px 2px 0 var(--yd);
    transition: transform .14s, box-shadow .14s;
}

.uni-ca-copy:hover {
    transform: translate(-2px, -2px);
    box-shadow: 4px 4px 0 var(--yd);
}

.uni-frame-wrap {
    background: var(--blk);
    border-radius: 20px;
    border: 4px solid var(--blk);
    overflow: hidden;
    box-shadow: 8px 8px 0 rgba(26, 16, 8, .2);
}

.uni-frame-wrap iframe {
    width: 100%;
    height: 660px;
    border: none;
    display: block;
}

/* ═══════════════════════════════════════
   MEMES
═══════════════════════════════════════ */
#memes {
    background: var(--blk);
    padding: 100px 60px;
}

.memes-wrap {
    max-width: 980px;
    margin: 0 auto;
}

.memes-eyebrow {
    color: rgba(247, 212, 110, .45);
}

.memes-title {
    font-family: 'Boogaloo', cursive;
    font-size: clamp(3.5rem, 8vw, 6rem);
    color: var(--y);
    letter-spacing: 2px;
    line-height: .9;
    text-shadow: 4px 4px 0 var(--org);
    margin-bottom: 40px;
}

.memes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.meme-card {
    aspect-ratio: 1/1;
    border-radius: 18px;
    border: 5px solid var(--y);
    overflow: hidden;
    box-shadow: 7px 7px 0 var(--org);
    transition: transform .22s, box-shadow .22s;
    background: #1a1008;
}

.meme-card:hover {
    transform: translate(-5px, -5px) rotate(-1.5deg);
    box-shadow: 12px 12px 0 var(--org);
    z-index: 5;
}

.meme-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.meme-ph {
    width: 100%;
    height: 100%;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 9px;
}

.meme-ph span {
    font-family: 'Boogaloo', cursive;
    font-size: 1rem;
    color: rgba(247, 212, 110, .25);
    letter-spacing: 2px;
}

/* ═══════════════════════════════════════
   CONTACT
═══════════════════════════════════════ */
#contact {
    background: var(--y);
    padding: 100px 60px;
    position: relative;
    overflow: hidden;
}

.contact-wrap {
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.contact-eyebrow {
    color: rgba(26, 16, 8, .4);
    justify-content: center;
}

.contact-eyebrow::before {
    display: none;
}

.contact-title {
    font-family: 'Boogaloo', cursive;
    font-size: clamp(4rem, 9vw, 6.5rem);
    color: var(--blk);
    letter-spacing: 3px;
    line-height: .9;
    text-shadow: 5px 5px 0 rgba(26, 16, 8, .14);
    margin-bottom: 12px;
}

.contact-sub {
    font-size: .97rem;
    font-weight: 700;
    color: var(--brn);
    margin-bottom: 44px;
}

.soc-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 24px;
}

.soc-card {
    background: var(--blk);
    color: var(--y);
    border: 3.5px solid var(--blk);
    border-radius: 16px;
    padding: 22px 24px;
    min-width: 140px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    box-shadow: 5px 5px 0 rgba(26, 16, 8, .2);
    transition: transform .2s, box-shadow .2s, border-color .2s;
}

.soc-card:hover {
    transform: translate(-4px, -4px) rotate(-1deg);
    box-shadow: 9px 9px 0 var(--org);
    border-color: var(--y);
}

.soc-ico {
    width: 40px;
    height: 40px;
    background: rgba(247, 212, 110, .07);
    border: 1.5px solid rgba(247, 212, 110, .12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.soc-name {
    font-family: 'Boogaloo', cursive;
    font-size: .95rem;
    letter-spacing: 2px;
}

.soc-hdl {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: .67rem;
    color: rgba(247, 212, 110, .32);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-wow {
    font-family: 'Boogaloo', cursive;
    font-size: clamp(2.5rem, 6vw, 5rem);
    color: var(--blk);
    letter-spacing: 8px;
    opacity: .08;
    user-select: none;
    margin-top: 28px;
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
footer {
    background: var(--blk);
    border-top: 3px solid var(--y);
    padding: 44px 60px 30px;
}

.foot-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 22px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(247, 212, 110, .08);
    margin-bottom: 22px;
}

.foot-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.foot-logo img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--y);
    object-fit: cover;
}

.foot-logo span {
    font-family: 'Boogaloo', cursive;
    font-size: 1.75rem;
    color: var(--y);
    letter-spacing: 3px;
    text-shadow: 2px 2px 0 var(--org);
}

.foot-links {
    display: flex;
    gap: 2px;
    flex-wrap: wrap;
}

.foot-links a {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: .72rem;
    color: rgba(247, 212, 110, .35);
    text-decoration: none;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 11px;
    border-radius: 7px;
    transition: all .2s;
}

.foot-links a:hover {
    color: var(--y);
    background: rgba(247, 212, 110, .06);
}

.foot-bot {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 22px;
    flex-wrap: wrap;
}

.foot-ca {
    font-family: 'Nunito', monospace;
    font-weight: 700;
    font-size: .68rem;
    color: rgba(247, 212, 110, .18);
    word-break: break-all;
    max-width: 430px;
    margin-bottom: 6px;
}

.foot-disc {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    font-size: .69rem;
    color: rgba(247, 212, 110, .15);
    line-height: 1.65;
    max-width: 520px;
}

.foot-copy {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: .69rem;
    color: rgba(247, 212, 110, .2);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-align: right;
    white-space: nowrap;
}

/* ═══════════════════════════════════════
   LANGUAGE TOGGLE
═══════════════════════════════════════ */
.lang-toggle {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(247, 212, 110, .1);
    border: 1.5px solid rgba(247, 212, 110, .2);
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    margin-left: 6px;
}

.lang-btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: .68rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 11px;
    background: none;
    border: none;
    color: rgba(247, 212, 110, .45);
    cursor: pointer !important;
    transition: background .2s, color .2s;
    line-height: 1;
}

.lang-btn.active {
    background: var(--y);
    color: var(--blk);
}

.lang-btn:not(.active):hover {
    color: var(--y);
    background: rgba(247, 212, 110, .08);
}

/* Chinese body font override */
body.lang-cn {
    font-family: 'Noto Sans SC', sans-serif;
}

body.lang-cn .about-intro-col,
body.lang-cn .htb-step p,
body.lang-cn .uni-info p,
body.lang-cn .about-card p,
body.lang-cn .hero-sub,
body.lang-cn .contact-sub,
body.lang-cn .foot-disc {
    font-family: 'Noto Sans SC', sans-serif;
    font-weight: 700;
    line-height: 1.9;
}

/* Chinese big statements use Noto too (Boogaloo has no CJK) */
body.lang-cn .about-intro-col .big-stmt,
body.lang-cn .wow-txt,
body.lang-cn .quote-inner p,
body.lang-cn .about-card h4,
body.lang-cn .htb-step h3,
body.lang-cn .uni-info h3 {
    font-family: 'Noto Sans SC', sans-serif;
    font-weight: 900;
    letter-spacing: .5px;
}

.toast {
    position: fixed;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%) translateY(90px);
    background: var(--y);
    color: var(--blk);
    font-family: 'Boogaloo', cursive;
    font-size: 1rem;
    letter-spacing: 3px;
    padding: 12px 26px;
    border-radius: 11px;
    border: 3px solid var(--blk);
    box-shadow: 5px 5px 0 var(--org);
    z-index: 99998;
    transition: transform .4s cubic-bezier(.34, 1.56, .64, 1);
}

.toast.show {
    transform: translateX(-50%) translateY(0);
}

/* ═══════════════════════════════════════
   REVEAL
═══════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal.in {
    opacity: 1;
    transform: none;
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */

/* ── tablet 1024px ── */
@media(max-width:1024px) {
    #hero {
        padding: 90px 40px 60px;
    }

    .hero-wrap {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .hero-left {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-sub {
        text-align: center;
    }

    .hero-right {
        justify-content: center;
    }

    .dog-stage {
        width: 340px;
        height: 340px;
    }

    .dog-blob {
        width: 240px;
        height: 240px;
    }

    .about-intro {
        grid-template-columns: 1fr;
    }

    .about-cards {
        grid-template-columns: 1fr 1fr;
    }

    .toki-grid {
        grid-template-columns: 1fr 1fr;
    }

    .tk.full {
        grid-column: 1/-1;
    }

    .tk-stats {
        flex-wrap: wrap;
        gap: 0;
    }

    .tk-stat {
        padding: 10px 18px;
    }

    .htb-grid {
        grid-template-columns: 1fr 1fr;
    }

    .uni-row {
        grid-template-columns: 1fr;
    }

    .uni-frame-wrap iframe {
        height: 560px;
    }

    .memes-grid {
        grid-template-columns: 1fr 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

    .about-bottom {
        gap: 28px;
    }
}

/* ── mobile 768px ── */
@media(max-width:768px) {
    #nav {
        padding: 0 20px;
    }

    .nav-links {
        display: none;
    }

    .nav-burger {
        display: flex;
    }

    #hero,
    .about-head,
    .about-intro,
    .about-quote,
    .about-cards,
    .about-bottom,
    #tokenomics,
    .toki-wrap,
    #howtobuy,
    .htb-wrap,
    .htb-grid,
    #chart,
    .chart-wrap,
    #memes,
    .memes-wrap,
    #contact,
    .contact-wrap,
    footer {
        padding-left: 20px;
        padding-right: 20px;
    }

    /* hero */
    #hero {
        padding-top: 90px;
        padding-bottom: 50px;
    }

    .hero-title {
        font-size: clamp(4.5rem, 20vw, 7rem);
    }

    .hero-btns {
        justify-content: center;
    }

    /* about */
    .about-head {
        padding-top: 60px;
        padding-bottom: 30px;
    }

    .about-title {
        font-size: clamp(3rem, 14vw, 5rem);
    }

    .about-intro {
        gap: 28px;
        padding-bottom: 28px;
    }

    .about-quote {
        padding-bottom: 28px;
    }

    .about-cards {
        grid-template-columns: 1fr;
        padding-bottom: 28px;
    }

    .about-bottom {
        flex-direction: column;
        align-items: flex-start;
        padding-bottom: 60px;
    }

    .nasdaq-link {
        width: 100%;
        max-width: 340px;
    }

    .nasdaq-img {
        aspect-ratio: 4/5;
    }

    /* toki */
    #tokenomics {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .toki-grid {
        grid-template-columns: 1fr;
    }

    .tk.full {
        grid-column: span 1;
        flex-direction: column;
        align-items: flex-start;
    }

    .tk-stats {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .tk-stat {
        border-right: none;
        border-bottom: 1px solid rgba(247, 212, 110, .1);
        padding: 10px 0;
        text-align: left;
        width: 100%;
    }

    .tk-stat:last-child {
        border-bottom: none;
    }

    /* htb */
    #howtobuy {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .htb-grid {
        grid-template-columns: 1fr;
    }

    .htb-title {
        margin-bottom: 36px;
    }

    /* chart */
    #chart {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    #dex-frame {
        height: 380px;
    }

    .uni-frame-wrap iframe {
        height: 520px;
    }

    /* memes */
    #memes {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .memes-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto;
    }

    /* contact */
    #contact {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .soc-row {
        gap: 10px;
    }

    .soc-card {
        min-width: calc(50% - 5px);
        padding: 18px 14px;
    }

    /* footer */
    footer {
        padding: 36px 20px 24px;
    }

    .foot-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .foot-bot {
        flex-direction: column;
    }

    .foot-copy {
        text-align: left;
    }
}

/* ── small 480px ── */
@media(max-width:480px) {
    .hero-tags {
        justify-content: center;
    }

    .about-cards {
        grid-template-columns: 1fr;
    }

    .soc-card {
        min-width: 130px;
    }

    .ca-actions {
        width: 100%;
    }

    .ca-copy {
        width: 100%;
        text-align: center;
    }
}