@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Space+Mono:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #050505;
    color: white;
    font-family: "Space Mono", monospace;
    overflow-x: hidden;
}

::selection {
    background: #8cff00;
    color: #000;
}

/* NOISE */

.noise {
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.05;
    z-index: 1000;

    background-image:
        repeating-radial-gradient(
            circle at 0 0,
            transparent 0,
            #fff 1px,
            transparent 2px
        );

    background-size: 6px 6px;
}

/* CURSOR */

.cursor-glow {
    position: fixed;
    width: 350px;
    height: 350px;
    border-radius: 50%;

    background: rgba(140, 255, 0, 0.10);

    filter: blur(70px);

    pointer-events: none;

    transform: translate(-50%, -50%);

    z-index: -1;
}

/* HEADER */

header {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;

    padding: 30px 6%;

    display: flex;
    justify-content: space-between;
    align-items: center;

    z-index: 100;
}

.logo {
    color: #8cff00;
    text-decoration: none;

    font-family: "Archivo Black", sans-serif;

    font-size: 24px;
}

nav {
    display: flex;
    gap: 30px;
}

nav a {
    color: #aaa;
    text-decoration: none;

    font-size: 12px;

    transition: 0.2s;
}

nav a:hover {
    color: #8cff00;
}

/* HERO */

.hero {
    position: relative;

    min-height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;

    text-align: center;

    padding: 120px 20px 80px;

    overflow: hidden;
}

.hero::before {
    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(140,255,0,0.23),
            transparent 65%
        );

    filter: blur(20px);
}

.background-text {
    position: absolute;

    top: 40%;
    left: 50%;

    transform:
        translate(-50%, -50%)
        rotate(-8deg);

    white-space: nowrap;

    font-family: "Archivo Black";

    font-size: 12vw;

    color: transparent;

    -webkit-text-stroke:
        1px rgba(140,255,0,0.08);

    pointer-events: none;
}

.hero-content {
    position: relative;

    z-index: 5;

    width: 100%;
    max-width: 1000px;
}

.small-title {
    color: #8cff00;

    letter-spacing: 6px;

    font-size: 11px;

    margin-bottom: 15px;
}

h1 {
    font-family: "Archivo Black";

    font-size: clamp(90px, 17vw, 230px);

    line-height: 0.8;

    letter-spacing: -10px;

    position: relative;
}

h1 span {
    color: #8cff00;

    display: inline-block;

    animation: wobble 2s infinite;
}

@keyframes wobble {

    0%, 100% {
        transform: rotate(-3deg);
    }

    50% {
        transform: rotate(4deg) translateY(-8px);
    }

}

/* FROG */

.frog-container {
    position: relative;

    width: min(390px, 80vw);

    margin:
        -10px auto
        -5px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.frog-container img {
    width: 100%;

    display: none;

    position: relative;

    z-index: 3;

    filter:
        drop-shadow(
            0 0 30px rgba(140,255,0,.4)
        );
}

.frog-emoji {
    font-size: clamp(150px, 28vw, 300px);

    position: relative;

    z-index: 3;

    filter:
        saturate(1.8)
        drop-shadow(
            0 0 30px rgba(140,255,0,.5)
        );

    animation:
        frogFloat 3s ease-in-out infinite;
}

.frog-glow {
    position: absolute;

    width: 100%;
    height: 100%;

    background: #8cff00;

    filter: blur(100px);

    opacity: .2;
}

@keyframes frogFloat {

    0%,100% {
        transform:
            translateY(0)
            rotate(-2deg);
    }

    50% {
        transform:
            translateY(-15px)
            rotate(2deg);
    }

}

/* HERO TEXT */

h2 {
    font-family: "Archivo Black";

    font-size: clamp(32px, 5vw, 65px);

    line-height: 1;
}

h2 span {
    color: #8cff00;
}

.hero-description {
    margin: 25px auto;

    max-width: 650px;

    color: #8d8d8d;

    line-height: 1.7;

    font-size: 13px;
}

/* BUTTON */

.buy-button {
    display: inline-flex;

    gap: 35px;

    align-items: center;

    padding: 18px 28px;

    background: #8cff00;

    color: #000;

    text-decoration: none;

    font-family: "Archivo Black";

    border: 2px solid #8cff00;

    transition: .2s;
}

.buy-button:hover {
    background: transparent;

    color: #8cff00;

    transform: rotate(-2deg) scale(1.04);
}

.scroll {
    position: absolute;

    bottom: 25px;

    color: #555;

    font-size: 9px;

    letter-spacing: 2px;
}

/* SECTIONS */

section:not(.hero) {
    padding:
        120px
        max(6%, calc((100% - 1200px) / 2));
}

.section-label {
    color: #8cff00;

    font-size: 10px;

    letter-spacing: 4px;

    margin-bottom: 25px;
}

/* ABOUT */

.about {
    border-top:
        1px solid #1b1b1b;
}

.about h3,
.contract-section h3 {
    font-family: "Archivo Black";

    font-size: clamp(55px, 10vw, 130px);

    letter-spacing: -5px;

    margin-bottom: 50px;
}

.about-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 70px;

    align-items: center;
}

.about-big {
    font-size: 250px;

    text-align: center;

    background: #0c0c0c;

    border: 1px solid #222;

    padding: 40px;

    transform: rotate(-3deg);
}

.about-text {
    font-size: clamp(17px, 2vw, 24px);

    line-height: 1.7;
}

.about-text p {
    margin-bottom: 30px;
}

.green {
    color: #8cff00;
}

/* QUOTE */

.quote {
    min-height: 600px;

    display: flex;

    flex-direction: column;

    justify-content: center;
    align-items: center;

    text-align: center;

    position: relative;

    overflow: hidden;

    background: #8cff00;

    color: #050505;
}

.quote p {
    font-family: "Archivo Black";

    font-size: clamp(55px, 10vw, 130px);

    line-height: .9;

    letter-spacing: -5px;
}

.quote p span {
    -webkit-text-stroke:
        2px black;

    color: transparent;
}

.quote small {
    margin-top: 30px;

    font-weight: bold;
}

.floating {
    position: absolute;

    font-size: 60px;

    animation:
        floatAround 5s
        ease-in-out
        infinite;
}

.floating-one {
    top: 15%;
    left: 10%;
}

.floating-two {
    right: 12%;
    top: 25%;

    animation-delay: 1s;
}

.floating-three {
    bottom: 15%;
    left: 30%;

    animation-delay: 2s;
}

@keyframes floatAround {

    50% {
        transform:
            translateY(-30px)
            rotate(20deg);
    }

}

/* FACTS */

.facts {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 1px;

    padding-top: 0 !important;
    padding-bottom: 0 !important;

    background: #222;
}

.fact {
    background: #050505;

    padding: 80px 40px;
}

.fact span {
    color: #8cff00;

    font-size: 11px;
}

.fact h4 {
    font-family: "Archivo Black";

    font-size: 26px;

    margin: 15px 0;
}

.fact p {
    color: #777;
}

/* CONTRACT */

.contract-section {
    text-align: center;

    min-height: 700px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;
}

.contract-section h3 {
    color: #8cff00;

    margin-bottom: 50px;
}

.contract-label {
    color: #666;

    font-size: 10px;

    letter-spacing: 4px;

    margin-bottom: 15px;
}

.contract {
    width: min(750px, 100%);

    border:
        1px solid #333;

    background: #0a0a0a;

    color: white;

    padding: 20px;

    display: flex;

    justify-content: space-between;

    gap: 20px;

    font-family: "Space Mono";

    cursor: pointer;

    transition: .2s;
}

.contract:hover {
    border-color: #8cff00;
}

.contract span {
    overflow: hidden;

    text-overflow: ellipsis;
}

.contract strong {
    color: #8cff00;
}

.copied {
    color: #8cff00;

    margin-top: 15px;

    opacity: 0;

    transition: .2s;
}

.copied.show {
    opacity: 1;
}

/* FOOTER */

footer {
    border-top:
        1px solid #222;

    padding: 50px 6%;

    display: grid;

    grid-template-columns:
        1fr 2fr 1fr;

    gap: 30px;

    align-items: center;

    color: #666;

    font-size: 10px;
}

.footer-logo {
    font-family: "Archivo Black";

    color: #8cff00;

    font-size: 20px;
}

footer span {
    text-align: right;
}

/* MOBILE */

@media(max-width: 750px) {

    header {
        padding: 22px;
    }

    nav {
        display: none;
    }

    h1 {
        letter-spacing: -6px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-big {
        font-size: 150px;
    }

    .facts {
        grid-template-columns: 1fr;
    }

    footer {
        grid-template-columns: 1fr;

        text-align: center;
    }

    footer span {
        text-align: center;
    }

}