/* ============================================================
   RESET
============================================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #080a08;
    color: #f5f5f0;
    font-family: "Inter", sans-serif;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
}

img {
    max-width: 100%;
    display: block;
}


/* ============================================================
   VARIABLES
============================================================ */

:root {

    --black: #080a08;
    --black-2: #0e110e;
    --black-3: #141814;

    --green: #b7ff00;
    --green-bright: #d2ff42;
    --green-dark: #4c7600;

    --white: #f5f5f0;
    --gray: #8f948b;
    --border: rgba(255,255,255,0.12);

    --max-width: 1240px;

}


/* ============================================================
   GLOBAL
============================================================ */

.section {
    position: relative;
    padding: 140px 0;
}

.section-container {
    width: min(
        calc(100% - 48px),
        var(--max-width)
    );
    margin: 0 auto;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 70px;
}

.eyebrow {
    color: var(--green);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.2em;
    margin-bottom: 18px;
}

.section-heading h2 {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(70px, 10vw, 140px);
    line-height: 0.8;
    letter-spacing: -0.02em;
}

.section-heading h2 span {
    color: var(--green);
}

.section-heading p {
    margin-top: 28px;
    color: var(--gray);
    font-size: 17px;
    line-height: 1.7;
}


/* ============================================================
   NAVBAR
============================================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

    background: rgba(8,10,8,0.86);
    backdrop-filter: blur(18px);

    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-container {
    width: min(
        calc(100% - 40px),
        1400px
    );

    height: 76px;
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-icon {
    width: 38px;
    height: 38px;

    border-radius: 10px;

    background: var(--green);
    color: #080a08;

    display: flex;
    align-items: center;
    justify-content: center;

    font-family: "Bebas Neue", sans-serif;
    font-size: 27px;

    transform: skew(-7deg);

    box-shadow:
        0 0 25px rgba(183,255,0,0.2);
}

.brand-name {
    font-size: 18px;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 34px;
}

.nav-menu a {
    color: #a7aaa2;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;

    transition: 0.2s ease;
}

.nav-menu a:hover {
    color: var(--green);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-buy {
    padding: 12px 18px;

    background: var(--green);
    color: #080a08;

    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.05em;

    border-radius: 5px;

    transition: 0.2s ease;
}

.nav-buy:hover {
    transform: translateY(-2px);
    box-shadow:
        0 10px 30px rgba(183,255,0,0.18);
}

.nav-buy span {
    margin-left: 7px;
}

.mobile-toggle {
    display: none;

    width: 40px;
    height: 40px;

    border: 1px solid var(--border);
    background: transparent;

    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;

    cursor: pointer;
}

.mobile-toggle span {
    width: 18px;
    height: 2px;
    background: white;
}


/* ============================================================
   MOBILE MENU
============================================================ */

.mobile-menu {
    position: fixed;
    top: 76px;
    left: 0;
    width: 100%;

    background: #0b0d0b;
    border-bottom: 1px solid var(--border);

    padding: 20px;

    display: none;
    flex-direction: column;

    z-index: 999;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    padding: 15px 5px;

    border-bottom: 1px solid var(--border);

    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.mobile-menu a:hover {
    color: var(--green);
}

.mobile-menu .mobile-buy {
    margin-top: 15px;

    text-align: center;

    background: var(--green);
    color: #080a08;

    border: 0;
}


/* ============================================================
   HERO
============================================================ */

.hero {
    min-height: 900px;

    position: relative;
    overflow: hidden;

    display: flex;
    align-items: center;

    padding: 120px 5% 80px;
}

.hero-bg-glow {
    position: absolute;

    width: 750px;
    height: 750px;

    right: -120px;
    top: 70px;

    background:
        radial-gradient(
            circle,
            rgba(183,255,0,0.20),
            rgba(183,255,0,0) 68%
        );

    pointer-events: none;
}

.hero-grid {
    position: absolute;
    inset: 0;

    opacity: 0.08;

    background-image:
        linear-gradient(
            rgba(183,255,0,0.4) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(183,255,0,0.4) 1px,
            transparent 1px
        );

    background-size: 60px 60px;

    mask-image:
        radial-gradient(
            ellipse at center,
            black,
            transparent 75%
        );
}

.hero-content {
    width: 52%;
    position: relative;
    z-index: 5;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 9px 13px;

    border: 1px solid rgba(183,255,0,0.3);
    border-radius: 999px;

    color: var(--green);

    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.15em;

    background: rgba(183,255,0,0.04);

    margin-bottom: 30px;
}

.pulse-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--green);

    box-shadow:
        0 0 15px var(--green);

    animation: pulse 1.6s infinite;
}

@keyframes pulse {

    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.45;
        transform: scale(0.7);
    }

}

.hero h1 {
    font-family: "Bebas Neue", sans-serif;

    font-size: clamp(
        110px,
        15vw,
        220px
    );

    line-height: 0.70;

    letter-spacing: -0.025em;
}

.hero-line {
    display: block;
}

.hero-highlight {
    color: var(--green);

    text-shadow:
        0 0 50px rgba(183,255,0,0.14);
}

.hero-description {
    margin-top: 42px;

    color: #c1c4bc;

    font-size: 16px;
    line-height: 1.7;

    font-weight: 700;
}

.contract-box {
    width: min(560px, 100%);

    margin-top: 30px;

    padding: 6px;

    border: 1px solid rgba(255,255,255,0.1);

    background: rgba(255,255,255,0.03);

    display: flex;
    align-items: center;

    border-radius: 7px;
}

.contract-label {
    padding: 11px;

    color: var(--green);

    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.contract-address {
    flex: 1;

    color: #858a80;

    font-size: 11px;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.copy-button {
    border: 0;

    background: #1d231b;

    color: white;

    padding: 10px 14px;

    font-size: 9px;
    font-weight: 900;

    cursor: pointer;

    border-radius: 4px;

    transition: 0.2s;
}

.copy-button:hover {
    background: var(--green);
    color: #080a08;
}

.hero-buttons {
    display: flex;
    gap: 12px;

    margin-top: 25px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    min-height: 52px;
    padding: 0 23px;

    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;

    border-radius: 5px;

    transition: 0.25s ease;
}

.button-primary {
    background: var(--green);
    color: #080a08;
}

.button-primary:hover {
    transform: translateY(-3px);
    box-shadow:
        0 15px 35px rgba(183,255,0,0.2);
}

.button-secondary {
    border: 1px solid rgba(255,255,255,0.16);
    color: white;
}

.button-secondary:hover {
    border-color: var(--green);
    color: var(--green);
}

.hero-mascot {
    position: absolute;

    right: 3%;
    bottom: 0;

    width: min(58vw, 760px);

    z-index: 2;

    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.hero-mascot img {
    position: relative;
    z-index: 2;

    width: 100%;

    filter:
        drop-shadow(
            0 30px 50px rgba(0,0,0,0.75)
        );

    animation: floatBull 5s ease-in-out infinite;
}

@keyframes floatBull {

    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

}

.mascot-glow {
    position: absolute;

    width: 80%;
    height: 80%;

    background:
        radial-gradient(
            circle,
            rgba(183,255,0,0.22),
            transparent 65%
        );

    filter: blur(30px);
}

.hero-stats {
    position: absolute;

    left: 5%;
    bottom: 55px;

    display: flex;
    gap: 35px;

    z-index: 8;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero-stat strong {
    color: var(--green);

    font-family: "Bebas Neue", sans-serif;
    font-size: 31px;
    line-height: 1;
}

.hero-stat span {
    color: #71766d;

    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.12em;
}


/* ============================================================
   MARQUEE
============================================================ */

.marquee {
    width: 100%;
    overflow: hidden;

    background: var(--green);
    color: #080a08;

    border-top: 1px solid #d2ff42;
    border-bottom: 1px solid #d2ff42;

    transform: rotate(-1deg) scale(1.03);

    margin: 15px 0;
}

.marquee-track {
    width: max-content;

    display: flex;
    align-items: center;
    gap: 30px;

    padding: 14px 0;

    animation: marquee 22s linear infinite;
}

.marquee-track span {
    font-family: "Bebas Neue", sans-serif;

    font-size: 28px;

    letter-spacing: 0.04em;

    white-space: nowrap;
}

.marquee-track i {
    font-style: normal;
    font-size: 18px;
}

@keyframes marquee {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}


/* ============================================================
   BULLSHIT
============================================================ */

.bullshit-section {
    background: #0b0e0b;
}

.bullshit-layout {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 80px;

    align-items: center;
}

.bullshit-image {
    position: relative;
}

.image-frame {
    position: relative;

    padding: 20px;

    border: 1px solid rgba(183,255,0,0.25);

    background:
        radial-gradient(
            circle at center,
            #1c3011,
            #0a0d0a 70%
        );

    overflow: hidden;
}

.image-frame::before {
    content: "";

    position: absolute;

    inset: 15px;

    border: 1px dashed
        rgba(183,255,0,0.18);

    pointer-events: none;
}

.image-frame img {
    width: 100%;

    position: relative;
    z-index: 2;
}

.image-sticker {
    position: absolute;

    right: 30px;
    top: 30px;

    z-index: 4;

    padding: 9px 13px;

    background: var(--green);
    color: #080a08;

    font-size: 10px;
    font-weight: 900;

    transform: rotate(5deg);
}

.bullshit-copy {
    display: flex;
    flex-direction: column;

    gap: 2px;
}

.story-card {
    position: relative;

    padding: 30px 0 30px 65px;

    border-bottom:
        1px solid rgba(255,255,255,0.1);
}

.card-number {
    position: absolute;

    left: 0;
    top: 30px;

    color: var(--green);

    font-family: "Bebas Neue", sans-serif;
    font-size: 30px;
}

.story-card h3 {
    font-family: "Bebas Neue", sans-serif;

    font-size: 35px;

    margin-bottom: 10px;
}

.story-card p {
    color: #858a81;

    font-size: 14px;
    line-height: 1.7;

    max-width: 450px;
}


/* ============================================================
   MEMES
============================================================ */

.memes-section {
    background: #080a08;
}

.memes-heading {
    display: flex;
    flex-direction: column;
}

.meme-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 15px;
}

.meme-card {
    position: relative;

    aspect-ratio: 1 / 1;

    overflow: hidden;

    background: #121612;

    border: 1px solid
        rgba(255,255,255,0.08);

    cursor: pointer;
}

.meme-card.large {
    grid-column: span 2;
    aspect-ratio: 2 / 1;
}

.meme-card img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.meme-card:hover img {
    transform: scale(1.05);
}

.meme-overlay {
    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;

    padding: 16px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background:
        linear-gradient(
            transparent,
            rgba(0,0,0,0.9)
        );

    opacity: 0;

    transition: 0.25s;
}

.meme-card:hover .meme-overlay {
    opacity: 1;
}

.meme-overlay span {
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.1em;
}

.save-meme {
    border: 1px solid var(--green);

    background: var(--green);
    color: #080a08;

    padding: 7px 10px;

    font-size: 8px;
    font-weight: 900;

    cursor: pointer;
}


/* ============================================================
   TOKENOMICS
============================================================ */

.token-section {
    background: #0c110a;

    overflow: hidden;
}

.token-bg {
    position: absolute;

    width: 900px;
    height: 900px;

    top: -300px;
    right: -300px;

    background:
        radial-gradient(
            circle,
            rgba(183,255,0,0.12),
            transparent 65%
        );

    pointer-events: none;
}

.token-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 14px;

    position: relative;
}

.token-card {
    min-height: 330px;

    padding: 28px;

    border:
        1px solid
        rgba(255,255,255,0.1);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.04),
            rgba(255,255,255,0.015)
        );

    display: flex;
    flex-direction: column;

    transition: 0.25s;
}

.token-card:hover {
    border-color:
        rgba(183,255,0,0.35);

    transform: translateY(-5px);
}

.token-card.featured {
    background:
        linear-gradient(
            145deg,
            rgba(183,255,0,0.12),
            rgba(183,255,0,0.02)
        );
}

.token-icon {
    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid
        rgba(183,255,0,0.35);

    color: var(--green);

    margin-bottom: auto;

    font-weight: 900;
}

.token-value {
    font-family: "Bebas Neue", sans-serif;

    font-size: 37px;

    color: white;

    word-break: break-word;
}

.token-label {
    margin-top: 6px;

    color: var(--green);

    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.token-card p {
    color: #777c73;

    font-size: 12px;
    line-height: 1.6;

    margin-top: 20px;
}

.token-disclaimer {
    margin-top: 25px;

    display: flex;
    gap: 15px;

    padding: 18px 20px;

    border:
        1px solid
        rgba(255,255,255,0.08);

    background: rgba(0,0,0,0.2);
}

.token-disclaimer span {
    color: var(--green);
}

.token-disclaimer p {
    color: #70756d;

    font-size: 11px;
    line-height: 1.6;
}


/* ============================================================
   HOW TO
============================================================ */

.how-section {
    background: #080a08;
}

.steps {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    border-top:
        1px solid
        rgba(255,255,255,0.1);

    border-left:
        1px solid
        rgba(255,255,255,0.1);
}

.step {
    min-height: 340px;

    padding: 30px;

    border-right:
        1px solid
        rgba(255,255,255,0.1);

    border-bottom:
        1px solid
        rgba(255,255,255,0.1);

    position: relative;

    transition: 0.25s;
}

.step:hover {
    background: rgba(183,255,0,0.03);
}

.step-number {
    color: #4d514a;

    font-size: 10px;
    font-weight: 900;

    margin-bottom: 45px;
}

.step-icon {
    font-size: 38px;

    margin-bottom: 30px;
}

.step h3 {
    font-family: "Bebas Neue", sans-serif;

    font-size: 32px;

    margin-bottom: 12px;
}

.step p {
    color: #777c73;

    font-size: 13px;
    line-height: 1.7;
}


/* ============================================================
   BUY
============================================================ */

.buy-section {
    position: relative;

    min-height: 580px;

    background:
        linear-gradient(
            135deg,
            #b7ff00 0%,
            #d7ff56 45%,
            #8bc900 100%
        );

    color: #080a08;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    overflow: hidden;
}

.buy-section::before {
    content: "SUPERSEM";

    position: absolute;

    font-family: "Bebas Neue", sans-serif;

    font-size: 28vw;

    line-height: 1;

    color: rgba(0,0,0,0.045);

    white-space: nowrap;

    transform: rotate(-8deg);
}

.buy-content {
    position: relative;
    z-index: 3;
}

.buy-small {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.2em;

    margin-bottom: 20px;
}

.buy-content h2 {
    font-family: "Bebas Neue", sans-serif;

    font-size: clamp(
        100px,
        18vw,
        250px
    );

    line-height: 0.7;
}

.buy-content h2 span {
    color: white;

    text-shadow:
        5px 5px 0 #080a08;
}

.buy-content p {
    max-width: 480px;

    margin: 35px auto 25px;

    font-size: 16px;
    font-weight: 700;
}

.button-black {
    background: #080a08;
    color: white;

    padding: 0 30px;
}

.button-black:hover {
    background: white;
    color: #080a08;

    transform: translateY(-3px);
}


/* ============================================================
   LINKS
============================================================ */

.links-section {
    background: #0b0e0b;
}

.social-links {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 12px;
}

.social-card {
    padding: 25px;

    min-height: 145px;

    border:
        1px solid
        rgba(255,255,255,0.1);

    display: flex;
    align-items: center;

    gap: 18px;

    transition: 0.25s;
}

.social-card:hover {
    background: var(--green);
    color: #080a08;

    transform: translateY(-4px);
}

.social-symbol {
    width: 44px;
    height: 44px;

    border: 1px solid currentColor;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 12px;
    font-weight: 900;
}

.social-card strong {
    display: block;

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 0.08em;
}

.social-card small {
    display: block;

    margin-top: 8px;

    opacity: 0.5;

    font-size: 8px;
    font-weight: 900;

    letter-spacing: 0.08em;
}


/* ============================================================
   FOOTER
============================================================ */

.footer {
    background: #050605;

    border-top:
        1px solid
        rgba(255,255,255,0.08);

    padding: 55px 0 25px;
}

.footer-container {
    width: min(
        calc(100% - 48px),
        var(--max-width)
    );

    margin: auto;
}

.footer-brand {
    display: flex;
    align-items: center;

    gap: 14px;
}

.footer-logo {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--green);
    color: #080a08;

    font-family: "Bebas Neue", sans-serif;
    font-size: 32px;
}

.footer-brand strong {
    display: block;

    font-size: 16px;
    font-weight: 900;
}

.footer-brand span {
    display: block;

    margin-top: 4px;

    color: #656a62;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.footer-copy {
    max-width: 580px;

    margin-top: 35px;

    color: #5d625b;

    font-size: 11px;
    line-height: 1.8;
}

.footer-bottom {
    margin-top: 45px;
    padding-top: 20px;

    border-top:
        1px solid
        rgba(255,255,255,0.07);

    display: flex;
    justify-content: space-between;

    color: #444840;

    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.12em;
}


/* ============================================================
   TOAST
============================================================ */

.toast {
    position: fixed;

    bottom: 30px;
    left: 50%;

    transform:
        translate(-50%, 100px);

    padding: 13px 20px;

    background: var(--green);
    color: #080a08;

    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.08em;

    z-index: 5000;

    opacity: 0;

    transition: 0.3s;
}

.toast.show {
    transform:
        translate(-50%, 0);

    opacity: 1;
}


/* ============================================================
   RESPONSIVE
============================================================ */

@media (max-width: 1100px) {

    .nav-menu {
        gap: 18px;
    }

    .hero {
        min-height: 850px;
    }

    .hero-mascot {
        width: 58vw;
        right: -3%;
    }

    .hero-content {
        width: 60%;
    }

    .token-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .social-links {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


@media (max-width: 800px) {

    .nav-menu,
    .nav-buy {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero {
        min-height: 920px;

        padding-top: 140px;

        align-items: flex-start;
    }

    .hero-content {
        width: 100%;
    }

    .hero h1 {
        font-size:
            clamp(
                100px,
                27vw,
                180px
            );
    }

    .hero-mascot {
        width: 90vw;

        right: -10%;

        bottom: -20px;

        opacity: 0.72;
    }

    .hero-content {
        position: relative;
        z-index: 10;
    }

    .hero-description {
        color: white;
    }

    .hero-stats {
        bottom: 20px;
    }

    .bullshit-layout {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .meme-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .meme-card.large {
        grid-column: span 2;
    }

    .steps {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


@media (max-width: 560px) {

    .section {
        padding: 90px 0;
    }

    .section-container {
        width:
            calc(100% - 30px);
    }

    .nav-container {
        width:
            calc(100% - 28px);
    }

    .brand-name {
        font-size: 15px;
    }

    .hero {
        min-height: 850px;

        padding-left: 18px;
        padding-right: 18px;
    }

    .hero h1 {
        font-size: 31vw;
    }

    .hero-badge {
        font-size: 8px;
    }

    .contract-box {
        display: grid;

        grid-template-columns:
            auto 1fr auto;
    }

    .contract-address {
        font-size: 9px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .hero-mascot {
        width: 105vw;
        right: -20%;

        opacity: 0.55;
    }

    .hero-stats {
        gap: 20px;
    }

    .section-heading h2 {
        font-size: 80px;
    }

    .meme-grid {
        grid-template-columns: 1fr;
    }

    .meme-card,
    .meme-card.large {
        grid-column: span 1;

        aspect-ratio: 1 / 1;
    }

    .token-grid {
        grid-template-columns: 1fr;
    }

    .token-card {
        min-height: 270px;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .step {
        min-height: 270px;
    }

    .social-links {
        grid-template-columns: 1fr;
    }

    .buy-content h2 {
        font-size: 33vw;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }

}


/* ============================================================
   SELECTION
============================================================ */

::selection {
    background: var(--green);
    color: #080a08;
}