/* =========================================
   ToolerKitDigest
   HOMEPAGE CSS
========================================= */


/* =========================================
   GLOBAL
========================================= */



/* =========================================
   WEBSITE NAVIGATION
========================================= */

.site-nav {

    width: 100%;

    padding: 20px;

}


.nav-container {

    width: 100%;

    max-width: 1100px;

    margin: 0 auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


/* =========================================
   WEBSITE LOGO
========================================= */

.site-logo {

    font-size: 1.5rem;

    font-weight: 800;

    text-decoration: none;

    letter-spacing: -0.5px;

}


.logo-white {

    color: white;

}


.logo-green {

    color: #22c55e;

}


/* =========================================
   DESKTOP NAVIGATION
========================================= */

.nav-links {

    display: flex;

    align-items: center;

    gap: 28px;

}


.nav-links a {

    color: #cbd5e1;

    text-decoration: none;

    font-size: 15px;

    font-weight: 600;

    transition: 0.3s ease;

}


.nav-links a:hover {

    color: #22c55e;

}


/* =========================================
   MOBILE MENU BUTTON
========================================= */

.menu-toggle {

    display: none;

    width: auto;

    margin: 0;

    padding: 10px 14px;

    background: transparent;

    color: white;

    border: 1px solid rgba(255, 255, 255, 0.15);

    border-radius: 10px;

    font-size: 20px;

}


/* =========================================
   GREEN TITLE TEXT
========================================= */

.title-green {

    color: #22c55e;

}


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


html {
    scroll-behavior: smooth;
}


body {

    width: 100%;

    min-height: 100vh;

    font-family: Arial, Helvetica, sans-serif;

    background: #0b1020;

    color: white;

    line-height: 1.6;

    overflow-x: hidden;

}


/* =========================================
   HERO
========================================= */

.hero {

    width: 100%;

    max-width: 1000px;

    margin: 0 auto;

    padding: 50px 20px 40px;

    text-align: center;

}


.badge {

    display: inline-block;

    background: #7c3aed;

    padding: 8px 18px;

    border-radius: 30px;

    font-size: 12px;

    letter-spacing: 1px;

    margin-bottom: 20px;

}


.hero h1 {

    max-width: 850px;

    margin: 10px auto 15px;

    font-size: 2.3rem;

    line-height: 1.2;

}


.hero p {

    width: 100%;

    max-width: 650px;

    margin: 10px auto 20px;

    color: #cbd5e1;

    font-size: 1rem;

}


/* =========================================
   BUTTONS
========================================= */

button {

    background: #119a26dd;

    color: white;

    border: none;

    padding: 15px 30px;

    border-radius: 30px;

    font-size: 16px;

    cursor: pointer;

    transition: 0.3s ease;

}


button:hover {

    transform: translateY(-3px);

    opacity: 0.9;

}


/* =========================================
   STATS
========================================= */

.stats {

    width: 100%;

    max-width: 900px;

    margin: 0 auto;

    padding: 20px;

    display: flex;

    justify-content: center;

    align-items: stretch;

    gap: 20px;

    flex-wrap: wrap;

}


.stats div {

    flex: 1 1 180px;

    max-width: 250px;

    background: #151b32;

    padding: 20px;

    border-radius: 15px;

    text-align: center;

}


.stats h2 {

    color: #a78bfa;

    margin-bottom: 5px;

}


.stats p {

    color: #cbd5e1;

}


/* =========================================
   GENERAL SECTIONS
========================================= */

section {

    width: 100%;

    max-width: 1100px;

    margin-left: auto;

    margin-right: auto;

    padding: 50px 20px;

    text-align: center;

}


section > h2 {

    width: 100%;

    margin: 0 auto 30px;

    text-align: center;

    font-size: 1.8rem;

}


/* =========================================
   FEATURED VAULTS
========================================= */

.vault-section {

    text-align: center;

}


.cards {

    width: 100%;

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 20px;

    align-items: stretch;

}


.card {

    width: 100%;

    background: #151b32;

    padding: 25px;

    border-radius: 18px;

    border: 1px solid rgba(255, 255, 255, 0.08);

    text-align: center;

    display: flex;

    flex-direction: column;

    align-items: center;

}


.card h3 {

    width: 100%;

    margin: 10px 0;

    color: #c4b5fd;

    text-align: center;

}


.card h2 {

    width: 100%;

    margin: 15px 0 10px;

    font-size: 1.1rem;

    text-align: center;

}


.card p {

    width: 100%;

    color: #cbd5e1;

    margin: 10px 0;

    text-align: center;

}


.card a {

    width: 100%;

    margin-top: auto;

    text-decoration: none;

}


.card button {

    width: 100%;

    margin-top: 20px;

}


/* =========================================
   VAULT IMAGES
========================================= */

.vault-image {

    width: 220px;

    max-width: 100%;

    height: auto;

    margin: 10px auto 25px;

    display: block;

    border-radius: 15px;

}


/* =========================================
   WHY TOOLERKITDIGEST
========================================= */

.unlock {

    width: calc(100% - 40px);

    max-width: 1000px;

    margin: 40px auto;

    padding: 50px 25px;

    background: #111827;

    border-radius: 20px;

    text-align: center;

}


.unlock-content {

    width: 100%;

    max-width: 700px;

    margin: 0 auto;

    text-align: center;

}


.unlock-content h2 {

    width: 100%;

    margin: 0 auto 20px;

    text-align: center;

    font-size: 1.8rem;

}


.unlock-content p {

    width: 100%;

    max-width: 650px;

    margin: 0 auto;

    color: #cbd5e1;

    text-align: center;

}


/* =========================================
   TRUST
========================================= */

.trust {

    width: 100%;

    max-width: 1100px;

    margin: 0 auto;

    padding-bottom: 70px;

    text-align: center;

}


.trust > h2 {

    text-align: center;

    margin-bottom: 30px;

}


/* =========================================
   FOOTER
========================================= */

footer {

    width: 100%;

    margin: 30px auto 25px;

    padding: 0 20px;

    text-align: center;

    color: #94a3b8;

    font-size: 14px;

}


/* =========================================
   TELEGRAM FLOATING BUTTON
========================================= */

.telegram-float {

    position: fixed;

    right: 20px;

    bottom: 25px;

    z-index: 99999;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    min-width: 145px;

    padding: 12px 18px;

    background: #0985be;

    color: #ffffff;

    text-decoration: none;

    border-radius: 50px;

    font-size: 14px;

    font-weight: bold;

    box-shadow:
        0 6px 20px rgba(0, 0, 0, 0.35);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;

}


.telegram-float i {

    font-size: 22px;

    line-height: 1;

}


.telegram-float span {

    white-space: nowrap;

}


.telegram-float:hover {

    transform: translateY(-4px);

    box-shadow:
        0 10px 28px rgba(0, 0, 0, 0.45);

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .cards {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

    }


    .hero h1 {

        font-size: 2rem;

    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

    .hero {

        padding: 40px 18px 30px;

    }


    .hero h1 {

        font-size: 1.8rem;

    }


    .hero p {

        font-size: 1rem;

    }


    .stats {

        flex-direction: column;

        align-items: center;

        padding: 20px 15px;

    }


    .stats div {

        width: 100%;

        max-width: 320px;

    }


    .cards {

        grid-template-columns: 1fr;

    }


    section {

        padding: 40px 15px;

    }


    .unlock {

        width: calc(100% - 30px);

        padding: 40px 20px;

    }


    button {

        width: 90%;

        margin-top: 15px;

    }


    .telegram-float {

        right: 15px;

        bottom: 18px;

        min-width: 0;

        padding: 13px 16px;

    }

}


/* =========================================
   SMALL PHONES
========================================= */

@media (max-width: 650px) {

    .site-nav {

        padding: 15px;

    }


    .nav-container {

        position: relative;

    }


    .site-logo {

        font-size: 1.25rem;

    }


    .menu-toggle {

        display: block;

    }


    .nav-links {

        display: none;

        position: absolute;

        top: calc(100% + 10px);

        right: 0;

        width: 200px;

        padding: 15px;

        background: #151b32;

        border: 1px solid rgba(255, 255, 255, 0.08);

        border-radius: 15px;

        flex-direction: column;

        align-items: stretch;

        gap: 5px;

        z-index: 9999;

        box-shadow:
            0 15px 35px
            rgba(0, 0, 0, 0.35);

    }


    .nav-links.active {

        display: flex;

    }


    .nav-links a {

        padding: 12px;

        text-align: left;

        border-radius: 8px;

    }


    .nav-links a:hover {

        background: #1e293b;

    }

}



/* =========================================
   MOBILE MENU BUTTON FIX
========================================= */

.menu-toggle {

    display: none;

}


@media (max-width: 650px) {

    .menu-toggle {

        display: flex;

        width: 45px;

        height: 45px;

        margin: 0;

        padding: 0;

        align-items: center;

        justify-content: center;

        background: #151b32;

        color: #ffffff;

        border: 1px solid rgba(255, 255, 255, 0.15);

        border-radius: 10px;

        font-size: 20px;

        line-height: 1;

    }


    .menu-toggle i {

        color: #ffffff;

        font-size: 20px;

        pointer-events: none;

    }

}

