:root {
    --ink: #0b0705;
    --paper: #fffaf0;
    --cream: #fff3cd;
    --yellow: #ffd300;
    --orange: #ff7a00;
    --red: #ff2147;
    --hot: #ff3bd4;
    --cyan: #05e5ff;
    --green: #3dff8f;
    --shadow: 8px 8px 0 var(--ink);
    --font-display: "Bangers", "Luckiest Guy", cursive;
    --font-body: "Inter", system-ui, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--ink);
    color: var(--ink);
    font-family: var(--font-body);
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section-pad {
    padding: 80px 0;
}

.noise {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.2;
    background-image:
        linear-gradient(45deg, rgba(255, 255, 255, 0.12) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(0, 0, 0, 0.16) 25%, transparent 25%);
    background-size: 12px 12px;
}

.hero-section {
    height: 100vh;
    height: 100svh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 22px 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 86% 16%, var(--cyan) 0 9%, transparent 10%),
        radial-gradient(circle at 10% 24%, var(--hot) 0 8%, transparent 9%),
        radial-gradient(circle at 76% 82%, var(--red) 0 10%, transparent 11%),
        linear-gradient(135deg, #ffd300 0%, #ff8a00 38%, #ff2147 74%, #0b0705 74%);
}

.hero-section::before,
.hero-section::after {
    content: "";
    position: absolute;
    inset: -20%;
    background:
        repeating-conic-gradient(from 12deg, transparent 0 8deg, rgba(255, 255, 255, 0.34) 8deg 11deg);
    transform: translateX(26%) rotate(-8deg);
    opacity: 0.35;
}

.hero-section::after {
    inset: auto -6% -110px auto;
    width: 52vw;
    height: 52vw;
    border: 14px solid var(--ink);
    border-radius: 50%;
    background: var(--paper);
    opacity: 1;
}

.hero-grid {
    height: calc(100svh - 44px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
    align-items: center;
    gap: 32px;
}

.brand-lockup,
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--paper);
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.4rem);
    letter-spacing: 0;
    text-shadow: 4px 4px 0 var(--ink);
}

.brand-lockup img,
.footer-logo img {
    width: 58px;
    height: 58px;
    object-fit: contain;
    background: var(--paper);
    border: 4px solid var(--ink);
    border-radius: 50%;
    box-shadow: 5px 5px 0 var(--ink);
}

.hero-kicker,
.section-label {
    display: inline-flex;
    width: fit-content;
    margin: 28px 0 18px;
    padding: 9px 14px;
    border: 3px solid var(--ink);
    background: var(--green);
    color: var(--ink);
    box-shadow: 5px 5px 0 var(--ink);
    font-size: 0.86rem;
    font-weight: 900;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    font-family: var(--font-display);
    letter-spacing: 0;
    line-height: 0.92;
}

h1 {
    max-width: 640px;
    color: var(--paper);
    font-size: clamp(3.8rem, 7.2vw, 6.8rem);
    text-shadow: 7px 7px 0 var(--ink), 12px 12px 0 var(--red);
}

h1 span {
    display: block;
}

h2 {
    color: var(--ink);
    font-size: clamp(3.4rem, 7vw, 6.8rem);
}

h3 {
    font-size: clamp(2rem, 3vw, 3rem);
}

.hero-subtitle {
    max-width: 660px;
    margin-top: 18px;
    color: var(--paper);
    font-size: clamp(1.08rem, 2vw, 1.42rem);
    font-weight: 900;
    line-height: 1.45;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.55);
}

.hero-actions,
.social-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 24px;
}

.btn,
.social-button,
.copy-button {
    border: 4px solid var(--ink);
    color: var(--ink);
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 900;
    text-transform: uppercase;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.btn {
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    font-size: 1rem;
    box-shadow: var(--shadow);
}

.btn-primary {
    background: var(--paper);
    animation: cta-bounce 1.8s ease-in-out infinite;
}

.btn-secondary {
    background: var(--cyan);
}

.btn:hover,
.social-button:hover,
.copy-button:hover {
    transform: translate(4px, 4px) rotate(-1deg);
    box-shadow: 3px 3px 0 var(--ink);
}

.contract-panel {
    width: min(100%, 660px);
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    padding: 10px;
    background: var(--paper);
    border: 4px solid var(--ink);
    box-shadow: var(--shadow);
    transform: rotate(-1deg);
}

.contract-label {
    padding: 10px 12px;
    background: var(--red);
    color: var(--paper);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

#ca-text {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 0.88rem;
    font-weight: 800;
}

.copy-button {
    min-width: 72px;
    height: 44px;
    background: var(--yellow);
}

.copy-button.copied {
    background: var(--green);
}

.hero-art {
    min-height: 0;
    height: min(72svh, 620px);
    position: relative;
    display: grid;
    place-items: center;
    transform: translateY(-18px);
}

.mascot {
    width: min(100%, 500px);
    position: relative;
    z-index: 4;
    padding: 10px;
    border: 6px solid var(--ink);
    border-radius: 28px;
    background: var(--paper);
    filter: drop-shadow(20px 22px 0 rgba(11, 7, 5, 0.8));
    animation: float-mascot 4.4s ease-in-out infinite;
}

.impact-ring {
    width: min(82vw, 520px);
    aspect-ratio: 1;
    position: absolute;
    border: 18px solid var(--ink);
    border-radius: 50%;
    background:
        repeating-conic-gradient(var(--red) 0 8deg, var(--yellow) 8deg 16deg, var(--paper) 16deg 24deg);
    animation: spin-slow 16s linear infinite;
}

.burst {
    position: absolute;
    z-index: 5;
    padding: 14px 18px 10px;
    border: 4px solid var(--ink);
    background: var(--paper);
    color: var(--red);
    box-shadow: var(--shadow);
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 4.8rem);
    line-height: 0.9;
}

.burst-one {
    top: 52px;
    left: 10px;
    transform: rotate(-9deg);
}

.burst-two {
    right: 8px;
    bottom: 116px;
    background: var(--cyan);
    color: var(--ink);
    transform: rotate(8deg);
}

.chart-card {
    position: absolute;
    right: 0;
    top: 126px;
    z-index: 6;
    width: 154px;
    padding: 14px;
    border: 4px solid var(--ink);
    background: var(--ink);
    color: var(--paper);
    box-shadow: 7px 7px 0 var(--red);
    transform: rotate(8deg);
}

.chart-card span,
.chart-card em {
    display: block;
    font-size: 0.78rem;
    font-style: normal;
    font-weight: 900;
    opacity: 0.8;
    text-transform: uppercase;
}

.chart-card strong {
    display: block;
    color: var(--green);
    font-family: var(--font-display);
    font-size: 3rem;
    line-height: 0.9;
}

.ticker {
    position: relative;
    z-index: 10;
    width: 110%;
    margin-left: -5%;
    overflow: hidden;
    border-top: 5px solid var(--ink);
    border-bottom: 5px solid var(--ink);
    background: var(--paper);
    transform: rotate(-1deg);
}

.ticker-track {
    display: flex;
    width: max-content;
    gap: 28px;
    padding: 16px 0;
    animation: marquee 18s linear infinite;
}

.ticker span {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    white-space: nowrap;
}

.ticker span::after {
    content: " *";
    color: var(--red);
}

.about-section {
    background:
        radial-gradient(circle at 8% 18%, rgba(255, 33, 71, 0.22) 0 12%, transparent 13%),
        radial-gradient(circle at 86% 66%, rgba(5, 229, 255, 0.28) 0 14%, transparent 15%),
        var(--paper);
}

.about-section.section-pad {
    padding: 64px 0;
}

.split-layout,
.about-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 52px;
    align-items: start;
}

.about-layout {
    grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1.12fr);
    align-items: center;
    gap: 38px;
}

.about-heading,
.about-copy {
    grid-column: 1;
}

.about-visual {
    grid-column: 2;
    grid-row: 1 / span 2;
    position: relative;
    width: min(100%, 560px);
    justify-self: end;
    padding: 12px;
    border: 5px solid var(--ink);
    background: var(--paper);
    box-shadow: 12px 12px 0 var(--red);
    transform: rotate(1.2deg);
}

.about-visual::before {
    content: "MUU";
    position: absolute;
    top: -20px;
    left: 22px;
    z-index: 2;
    padding: 8px 14px;
    border: 4px solid var(--ink);
    background: var(--cyan);
    color: var(--ink);
    box-shadow: 5px 5px 0 var(--ink);
    font-size: 0.84rem;
    font-weight: 900;
}

.about-visual img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
}

.about-copy {
    display: grid;
    gap: 14px;
}

.about-copy p,
.community-copy p {
    font-size: clamp(0.98rem, 1.45vw, 1.12rem);
    font-weight: 800;
    line-height: 1.5;
}

.about-section h2 {
    max-width: 560px;
    font-size: clamp(3rem, 5vw, 5.2rem);
    line-height: 0.9;
}

.quote-card {
    padding: 18px 20px;
    border: 4px solid var(--ink);
    background: var(--yellow);
    box-shadow: var(--shadow);
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 2.7vw, 2.55rem) !important;
    line-height: 1 !important;
    transform: rotate(1deg);
}

.why-section {
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        var(--ink);
    background-size: 42px 42px;
}

.why-section h2,
.meme-section h2,
.community-section h2 {
    color: var(--paper);
    text-shadow: 5px 5px 0 var(--red);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 44px;
}

.why-grid,
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.muu-card,
.step-card {
    border: 4px solid var(--ink);
    background: var(--paper);
    box-shadow: var(--shadow);
}

.muu-card {
    min-height: 260px;
    padding: 24px;
    transition: transform 180ms ease;
}

.muu-card:nth-child(2) {
    background: var(--cyan);
}

.muu-card:nth-child(3) {
    background: var(--yellow);
}

.muu-card:nth-child(4) {
    background: var(--green);
}

.muu-card:hover {
    transform: translateY(-8px) rotate(0deg);
}

.tilt-left {
    transform: rotate(-1.3deg);
}

.tilt-right {
    transform: rotate(1.3deg);
}

.card-icon {
    display: inline-grid;
    place-items: center;
    width: 54px;
    height: 54px;
    margin-bottom: 22px;
    border: 4px solid var(--ink);
    background: var(--red);
    color: var(--paper);
    font-weight: 900;
}

.muu-card p,
.step-card p {
    margin-top: 12px;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.45;
}

.meme-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 20%, var(--red) 0 7%, transparent 8%),
        radial-gradient(circle at 82% 20%, var(--cyan) 0 8%, transparent 9%),
        radial-gradient(circle at 50% 90%, var(--yellow) 0 10%, transparent 11%),
        #17100d;
}

.meme-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.24;
    background:
        repeating-linear-gradient(115deg, transparent 0 26px, rgba(255, 255, 255, 0.12) 26px 30px),
        radial-gradient(circle at 50% 35%, rgba(255, 211, 0, 0.22), transparent 42%);
    animation: meme-lights 8s ease-in-out infinite alternate;
}

.meme-board {
    columns: 6 150px;
    column-gap: 16px;
    perspective: 1100px;
}

.meme-img {
    width: 100%;
    height: auto;
    break-inside: avoid;
    margin: 0 0 16px;
    border: 4px solid var(--paper);
    background: var(--paper);
    box-shadow: 6px 6px 0 var(--ink), 0 0 0 0 rgba(255, 211, 0, 0);
    cursor: pointer;
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, filter 180ms ease;
    animation: meme-float 4.8s ease-in-out infinite;
    transform: rotate(-1deg);
}

.meme-img:nth-child(2n) {
    animation-delay: 0.8s;
    transform: rotate(1deg);
}

.meme-img:nth-child(3n) {
    animation-delay: 1.4s;
}

.meme-img:nth-child(4n) {
    animation-delay: 2.1s;
    border-color: var(--cyan);
}

.meme-img:nth-child(5n) {
    animation-delay: 0.35s;
    border-color: var(--yellow);
}

.meme-img:nth-child(7n) {
    width: 100%;
}

.meme-img:nth-child(11n) {
    width: 100%;
}

.meme-img:nth-child(13n) {
    width: 100%;
}

.meme-img:hover {
    border-color: var(--yellow);
    filter: saturate(1.25) contrast(1.08);
    transform: scale(1.08) rotate(2deg) translateY(-8px) translateZ(34px);
    box-shadow: 10px 10px 0 var(--red), 0 0 34px rgba(255, 211, 0, 0.34);
    z-index: 4;
}

.buy-section {
    background: linear-gradient(135deg, var(--yellow), var(--orange) 45%, var(--red));
}

.steps-grid {
    counter-reset: steps;
}

.step-card {
    min-height: 250px;
    padding: 24px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.38)),
        var(--paper);
}

.step-card span {
    display: inline-block;
    margin-bottom: 18px;
    padding: 8px 10px;
    background: var(--ink);
    color: var(--paper);
    font-size: 0.8rem;
    font-weight: 900;
    text-transform: uppercase;
}

.center-cta {
    display: flex;
    justify-content: center;
    margin-top: 44px;
}

.community-section {
    background:
        linear-gradient(135deg, rgba(5, 229, 255, 0.28), transparent 34%),
        linear-gradient(315deg, rgba(255, 59, 212, 0.32), transparent 36%),
        var(--ink);
}

.community-grid {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 48px;
    align-items: center;
}

.community-copy p {
    max-width: 620px;
    margin-top: 20px;
    color: var(--paper);
}

.social-button {
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: var(--paper);
    box-shadow: var(--shadow);
}

.social-button img {
    width: 24px;
    height: 24px;
}

.community-visual {
    position: relative;
    padding: 12px;
    border: 5px solid var(--ink);
    background: var(--paper);
    box-shadow: 12px 12px 0 rgba(255, 33, 71, 0.85);
    transform: rotate(1.5deg);
}

.community-visual::before {
    position: absolute;
    top: -22px;
    left: 22px;
    z-index: 2;
    padding: 8px 14px;
    border: 4px solid var(--ink);
    background: var(--green);
    color: var(--ink);
    box-shadow: 5px 5px 0 var(--ink);
    font-size: 0.84rem;
    font-weight: 900;
}

.community-visual img {
    width: 100%;
    aspect-ratio: 16 / 11;
    object-fit: cover;
}

.site-footer {
    padding: 34px 0;
    border-top: 5px solid var(--paper);
    background: var(--ink);
    color: var(--paper);
}

.footer-grid {
    display: grid;
    grid-template-columns: auto 1fr minmax(280px, 420px);
    align-items: center;
    gap: 28px;
}

.footer-socials {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

.footer-socials a {
    font-weight: 900;
    text-transform: uppercase;
}

.footer-grid p {
    color: rgba(255, 250, 240, 0.72);
    font-size: 0.86rem;
    font-weight: 700;
    line-height: 1.45;
}

.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 99;
    display: none;
    place-items: center;
    padding: 24px;
    background: rgba(0, 0, 0, 0.9);
}

.modal-overlay.active {
    display: grid;
}

.modal-content {
    max-width: min(92vw, 980px);
    max-height: 88vh;
    border: 6px solid var(--paper);
    box-shadow: 12px 12px 0 var(--red);
}

.modal-close {
    position: fixed;
    top: 18px;
    right: 24px;
    width: 58px;
    height: 58px;
    border: 4px solid var(--paper);
    background: var(--red);
    color: var(--paper);
    cursor: pointer;
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 1;
}

@keyframes cta-bounce {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    50% { transform: translateY(-5px) rotate(1deg); }
}

@keyframes float-mascot {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-18px) rotate(2deg); }
}

@keyframes spin-slow {
    to { transform: rotate(360deg); }
}

@keyframes marquee {
    to { transform: translateX(-50%); }
}

@keyframes meme-lights {
    0% { transform: translateX(-2%) scale(1); }
    100% { transform: translateX(2%) scale(1.04); }
}

@keyframes meme-float {
    0%, 100% { translate: 0 0; }
    50% { translate: 0 -8px; }
}

@keyframes sticker-wiggle {
    0%, 100% { transform: rotate(-0.8deg); }
    50% { transform: rotate(1deg) translateY(-5px); }
}

@media (max-width: 980px) {
    .section-pad {
        padding: 72px 0;
    }

    .about-section.section-pad {
        padding: 56px 0;
    }

    .hero-grid,
    .split-layout,
    .about-layout,
    .community-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        height: auto;
        gap: 18px;
    }

    .hero-art {
        height: min(46svh, 500px);
        order: -1;
        transform: translateY(0);
    }

    .about-heading,
    .about-copy,
    .about-visual {
        grid-column: 1;
        grid-row: auto;
    }

    .about-visual {
        justify-self: stretch;
        width: min(100%, 620px);
    }

    .about-section h2 {
        max-width: 720px;
    }

    .hero-section::after {
        width: 78vw;
        height: 78vw;
    }

    .why-grid,
    .steps-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .meme-board {
        columns: 3 160px;
    }

    .footer-socials {
        justify-content: flex-start;
    }
}

@media (max-width: 620px) {
    .container {
        width: min(100% - 22px, 1180px);
    }

    .hero-section {
        height: auto;
        min-height: 100svh;
        padding: 14px 0 22px;
        align-items: flex-start;
    }

    .hero-grid {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .hero-copy {
        width: 100%;
        order: 1;
    }

    .hero-art {
        width: 100%;
        height: 280px;
        order: 2;
        transform: translateY(-10px);
    }

    .brand-lockup img,
    .footer-logo img {
        width: 42px;
        height: 42px;
        border-width: 3px;
    }

    .hero-kicker,
    .section-label {
        margin-top: 14px;
        margin-bottom: 12px;
        font-size: 0.74rem;
    }

    h1 {
        max-width: 100%;
        font-size: clamp(3rem, 14vw, 4.25rem);
        text-shadow: 5px 5px 0 var(--ink), 8px 8px 0 var(--red);
    }

    .hero-subtitle {
        max-width: 32rem;
        margin-top: 12px;
        font-size: 0.98rem;
        line-height: 1.35;
    }

    h2 {
        font-size: clamp(3rem, 15vw, 4.8rem);
    }

    .about-section h2 {
        font-size: clamp(2.8rem, 12vw, 4rem);
    }

    .hero-actions,
    .social-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 16px;
    }

    .btn,
    .social-button {
        width: 100%;
        min-height: 50px;
        padding: 12px 18px;
    }

    .contract-panel {
        grid-template-columns: 1fr auto;
        margin-top: 16px;
        padding: 8px;
    }

    .contract-label {
        grid-column: 1 / -1;
        width: fit-content;
    }

    #ca-text {
        font-size: 0.78rem;
    }

    .mascot {
        width: min(76vw, 280px);
        padding: 7px;
        border-width: 4px;
        border-radius: 20px;
        filter: drop-shadow(12px 14px 0 rgba(11, 7, 5, 0.78));
    }

    .impact-ring {
        width: min(78vw, 290px);
        border-width: 10px;
    }

    .burst {
        font-size: 1.45rem;
        padding: 8px 10px 6px;
        border-width: 3px;
        box-shadow: 4px 4px 0 var(--ink);
    }

    .burst-one {
        top: 20px;
        left: 28px;
    }

    .burst-two {
        right: 28px;
        bottom: 34px;
    }

    .chart-card {
        top: 56px;
        right: 26px;
        width: 104px;
        padding: 9px;
        border-width: 3px;
    }

    .chart-card strong {
        font-size: 1.8rem;
    }

    .chart-card span,
    .chart-card em {
        font-size: 0.62rem;
    }

    .why-grid,
    .steps-grid,
    .meme-board {
        columns: 2 140px;
    }

    .muu-card,
    .step-card {
        min-height: auto;
    }

    .footer-grid {
        text-align: left;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
    }
}
