* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #080808;
    color: #d8d8d8;
    font-family: monospace;
    font-size: 14px;
    line-height: 1.6;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 3px,
        rgba(255,255,255,.012) 4px
    );
    z-index: 10;
}

a {
    color: #d8d8d8;
    text-decoration: none;
}

a:hover {
    color: #fff;
}

.site {
    width: min(100% - 32px, 1050px);
    margin: auto;
}

header {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #222;
    animation: fadeDown .7s ease both;
}

.logo {
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    transition: transform .25s ease;
}

.logo:hover {
    transform: translateX(4px);
    text-decoration: none;
}

nav {
    display: flex;
    gap: 22px;
}

nav a {
    color: #777;
    transition: color .2s ease, transform .2s ease;
}

nav a:hover {
    color: #fff;
    transform: translateY(-2px);
    text-decoration: none;
}

.hero {
    padding: 110px 0 100px;
    max-width: 760px;
    animation: fadeUp .8s ease both;
}

.hero .small {
    color: #666;
    margin-bottom: 25px;
    animation: floatSmall 4s ease-in-out infinite;
}

h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(42px, 8vw, 82px);
    line-height: .95;
    letter-spacing: -4px;
    font-weight: 400;
}

.hero p {
    max-width: 620px;
    color: #999;
    margin: 30px 0;
    font-size: 15px;
}

.buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.button {
    display: inline-block;
    border: 1px solid #333;
    padding: 8px 14px;
    color: #aaa;
    transition:
        transform .25s ease,
        background .25s ease,
        border-color .25s ease,
        color .25s ease;
}

.button:hover {
    background: #111;
    border-color: #555;
    color: #fff;
    transform: translateY(-3px);
    text-decoration: none;
}

.section {
    border-top: 1px solid #222;
    padding: 70px 0;
    animation: fadeUp .8s ease both;
}

.section-title {
    color: #666;
    font-size: 11px;
    letter-spacing: 2px;
    margin-bottom: 35px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: #222;
    border: 1px solid #222;
}

.item {
    background: #080808;
    padding: 30px;
    min-height: 180px;
    transition: transform .3s ease, background .3s ease;
}

.item:nth-child(1) {
    animation: floatCard 5s ease-in-out infinite;
}

.item:nth-child(2) {
    animation: floatCard 6s ease-in-out infinite reverse;
}

.item:hover {
    background: #0d0d0d;
    transform: translateY(-5px);
}

.item-number {
    color: #555;
    font-size: 11px;
}

.item h2 {
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    margin: 15px 0 8px;
}

.item p {
    color: #777;
    margin: 0 0 20px;
}

.page {
    padding: 80px 0 120px;
    max-width: 850px;
    animation: fadeUp .7s ease both;
}

.page h1 {
    font-size: clamp(38px, 7vw, 65px);
    margin-bottom: 20px;
}

.page-intro {
    color: #777;
    max-width: 650px;
    margin-bottom: 70px;
}

.list {
    border-top: 1px solid #222;
}

.list-item {
    display: grid;
    grid-template-columns: 55px 1fr auto;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid #222;
    transition:
        padding-left .25s ease,
        background .25s ease;
}

.list-item:hover {
    padding-left: 10px;
    background: #0b0b0b;
}

.list-number {
    color: #555;
}

.list-title {
    color: #fff;
}

.list-description {
    color: #666;
    margin-top: 4px;
}

.status {
    color: #666;
    font-size: 11px;
}

article {
    max-width: 720px;
}

article h2 {
    color: #fff;
    font-size: 22px;
    font-weight: 400;
    margin: 55px 0 15px;
}

article p {
    color: #999;
    margin: 0 0 18px;
}

article ul {
    color: #999;
}

article code {
    color: #bbb;
}

article a {
    color: #bbb;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.wallet {
    border: 1px solid #222;
    padding: 20px;
    margin-bottom: 12px;
    overflow-wrap: anywhere;
    transition: transform .3s ease, border-color .3s ease;
    animation: floatWallet 5s ease-in-out infinite;
}

.wallet:nth-child(2) {
    animation-delay: -2s;
}

.wallet:hover {
    border-color: #444;
    transform: translateX(5px);
}

.wallet span {
    display: block;
    color: #555;
    font-size: 11px;
    margin-bottom: 7px;
}

.wallet code {
    color: #bbb;
}

.guide-link {
    display: inline-block;
    margin-top: 15px;
    border: 1px solid #333;
    padding: 7px 12px;
    font-size: 12px;
    color: #aaa;
    transition: .25s ease;
}

.guide-link:hover {
    background: #111;
    color: white;
    border-color: #555;
    transform: translateY(-2px);
}

.donation-jar-wrap {
    margin: 50px 0 60px;
    padding: 28px 20px 22px;
    border: 1px solid #222;
    background: #090909;
    text-align: center;
    animation: jarFloat 5s ease-in-out infinite;
}

.jar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 310px;
    margin: 0 auto 25px;
    color: #666;
    font-size: 11px;
    letter-spacing: 1px;
}

.jar-header strong {
    color: #ddd;
    font-weight: normal;
}

.jar {
    position: relative;
    width: 245px;
    height: 330px;
    margin: auto;
    border: 1px solid #444;
    border-top: 5px solid #333;
    border-radius: 8px 8px 24px 24px;
    overflow: hidden;
    background:
        linear-gradient(
            90deg,
            rgba(255,255,255,.025),
            transparent 15%,
            transparent 85%,
            rgba(255,255,255,.02)
        ),
        #080808;
    box-shadow:
        inset 0 0 35px rgba(255,255,255,.025),
        0 0 25px rgba(255,255,255,.015);
}

.jar::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -5px;
    width: 95px;
    height: 7px;
    transform: translateX(-50%);
    background: #111;
    border: 1px solid #444;
    z-index: 8;
}

.jar-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at 50% 100%,
        rgba(255,255,255,.06),
        transparent 45%
    );
    pointer-events: none;
}

.jar-fill {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1.65%;
    background: rgba(180,180,180,.12);
    border-top: 1px solid rgba(255,255,255,.25);
    animation: fillBreathe 3s ease-in-out infinite;
    z-index: 2;
}

.jar-liquid {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1.65%;
    background: linear-gradient(
        90deg,
        rgba(255,255,255,.08),
        rgba(255,255,255,.16),
        rgba(255,255,255,.07)
    );
    z-index: 3;
}

.jar-liquid::before {
    content: "";
    position: absolute;
    left: -10%;
    top: -3px;
    width: 120%;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,.13);
    animation: liquidWave 3s ease-in-out infinite;
}

.fill-shine {
    position: absolute;
    left: 25%;
    width: 20%;
    height: 100%;
    background: rgba(255,255,255,.15);
    filter: blur(4px);
}

.jar-mark {
    position: absolute;
    right: 0;
    width: 42px;
    height: 1px;
    background: #333;
    z-index: 5;
}

.jar-mark span {
    position: absolute;
    right: 49px;
    top: -7px;
    color: #555;
    font-size: 9px;
    white-space: nowrap;
}

.mark-200 {
    top: 10%;
}

.mark-150 {
    top: 30%;
}

.mark-100 {
    top: 50%;
}

.mark-50 {
    top: 70%;
}

.mark-10 {
    top: 84%;
}

.mark-5 {
    top: 91%;
}

.mark-1 {
    bottom: 1.65%;
}

.mist {
    position: absolute;
    width: 100px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255,255,255,.025);
    filter: blur(12px);
    z-index: 4;
    animation: mistMove 7s ease-in-out infinite;
}

.mist-one {
    left: 20px;
    bottom: 80px;
}

.mist-two {
    right: 5px;
    bottom: 140px;
    animation-delay: -2s;
}

.mist-three {
    left: 65px;
    bottom: 205px;
    animation-delay: -4s;
}

.jar-bottom {
    max-width: 310px;
    margin: 18px auto 0;
    display: flex;
    justify-content: space-between;
    gap: 15px;
    color: #444;
    font-size: 9px;
    text-align: left;
}

footer {
    border-top: 1px solid #222;
    padding: 30px 0;
    color: #444;
    font-size: 11px;
    display: flex;
    justify-content: space-between;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatSmall {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

@keyframes floatWallet {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}

@keyframes jarFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

@keyframes fillBreathe {
    0%, 100% {
        opacity: .65;
    }

    50% {
        opacity: 1;
    }
}

@keyframes liquidWave {
    0%, 100% {
        transform: translateX(-2%);
    }

    50% {
        transform: translateX(2%);
    }
}

@keyframes mistMove {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: .35;
    }

    50% {
        transform: translate(15px, -8px) scale(1.15);
        opacity: .6;
    }
}

@keyframes goalPulse {
    0%, 100% {
        opacity: .45;
        transform: scaleX(1);
    }

    50% {
        opacity: 1;
        transform: scaleX(1.08);
    }
}

@media (max-width: 650px) {
    .site {
        width: min(100% - 24px, 1050px);
    }

    header {
        height: auto;
        padding: 20px 0;
        align-items: flex-start;
        gap: 20px;
    }

    nav {
        gap: 10px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .hero {
        padding: 75px 0 70px;
    }

    h1 {
        letter-spacing: -2px;
    }

    .grid {
        grid-template-columns: 1fr;
    }

    .list-item {
        grid-template-columns: 35px 1fr;
    }

    .list-item .status {
        grid-column: 2;
    }

    .jar {
        width: 210px;
        height: 300px;
    }

    .jar-bottom {
        flex-direction: column;
        gap: 5px;
    }

    footer {
        flex-direction: column;
        gap: 8px;
    }
}