/* ========================================
   ITSRYNNO TOOLKIT
======================================== */

.toolkit-page {
    min-height: 100vh;
    background: var(--black);
    color: var(--white);
}

.toolkit-main {
    padding: 155px 0 90px;
}

.toolkit-hero {
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    gap: 55px;
    align-items: end;
    padding-bottom: 100px;
}

.toolkit-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--grey);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.toolkit-kicker-dot {
    width: 7px;
    height: 7px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #6dff78;
    box-shadow: 0 0 13px rgba(109, 255, 120, 0.65);
}

.toolkit-title {
    margin-top: 28px;
    font-size: clamp(70px, 10vw, 150px);
    line-height: 0.8;
    letter-spacing: -0.08em;
    text-transform: uppercase;
}

.toolkit-title span {
    color: transparent;
    -webkit-text-stroke: 2px var(--white);
}

.toolkit-intro {
    max-width: 520px;
    justify-self: end;
    color: var(--grey);
    font-size: 17px;
    line-height: 1.75;
}

.toolkit-intro strong {
    color: var(--white);
}

.toolkit-meta {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.toolkit-pill {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 11px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    color: #8f8f98;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.toolkit-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.tool-card {
    min-height: 290px;
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 20px;
    background:
        linear-gradient(
            145deg,
            rgba(181, 127, 255, 0.06),
            rgba(255, 255, 255, 0.015)
        ),
        #0d0d10;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
    transition:
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.35s ease,
        background 0.35s ease;
}

.tool-card::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    right: -90px;
    bottom: -110px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(181, 127, 255, 0.15),
            transparent 70%
        );
    filter: blur(18px);
    pointer-events: none;
    transition: transform 0.6s ease;
}

.tool-card:hover {
    transform: translateY(-8px);
    border-color: rgba(181, 127, 255, 0.42);
    background:
        linear-gradient(
            145deg,
            rgba(181, 127, 255, 0.1),
            rgba(255, 255, 255, 0.02)
        ),
        #101015;
}

.tool-card:hover::after {
    transform: scale(1.2);
}

.tool-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
}

.tool-mark {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.035);
    color: var(--white);
    font-size: 17px;
    font-weight: 900;
    letter-spacing: -0.04em;
    position: relative;
    z-index: 1;
}

.tool-category {
    color: #66666f;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.tool-card h2 {
    position: relative;
    z-index: 1;
    margin-top: auto;
    color: var(--white);
    font-size: clamp(28px, 3vw, 44px);
    line-height: 0.9;
    letter-spacing: -0.055em;
    text-transform: uppercase;
}

.tool-card p {
    position: relative;
    z-index: 1;
    max-width: 360px;
    margin-top: 14px;
    color: #85858f;
    font-size: 12px;
    line-height: 1.6;
}

.tool-card-bottom {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 14px;
    margin-top: 22px;
    padding-top: 17px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.tool-version-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-width: 0;
}

.tool-status {
    min-width: 0;
    color: #66666f;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.3px;
    line-height: 1.4;
    text-transform: uppercase;
}

.tool-version {
    flex-shrink: 0;
    color: var(--purple);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.1px;
    line-height: 1.4;
    text-align: right;
    text-transform: uppercase;
    white-space: nowrap;
}

.tool-links {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 7px;
    width: 100%;
}

.tool-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 31px;
    padding: 0 10px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 8px;
    color: #8c8c96;
    background: rgba(255, 255, 255, 0.025);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.05px;
    line-height: 1;
    text-transform: uppercase;
    transition:
        color 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease,
        transform 0.25s ease;
}

.tool-link:hover {
    transform: translateY(-1px);
    border-color: rgba(181, 127, 255, 0.35);
    color: var(--white);
    background: rgba(181, 127, 255, 0.07);
}

.tool-link-arrow {
    display: inline-block;
    transition: transform 0.25s ease;
}

.tool-link:hover .tool-link-arrow {
    transform: translate(2px, -2px);
}

.tool-download {
    border-color: rgba(181, 127, 255, 0.22);
    color: var(--purple);
}

.tool-download:hover {
    border-color: rgba(181, 127, 255, 0.5);
    background: rgba(181, 127, 255, 0.1);
}

.tool-download[hidden] {
    display: none;
}

.toolkit-tracking {
    margin-top: 18px;
    padding: 22px 25px;
    border: 1px solid rgba(181, 127, 255, 0.2);
    border-radius: 18px;
    background:
        linear-gradient(
            135deg,
            rgba(181, 127, 255, 0.08),
            transparent 65%
        );
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.toolkit-tracking-label {
    color: var(--purple);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.toolkit-tracking p {
    max-width: 650px;
    color: #85858f;
    font-size: 12px;
    line-height: 1.6;
}

.toolkit-footer {
    margin-top: 90px;
    padding-top: 25px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: #55555e;
    font-size: 10px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

@media (max-width: 900px) {

    .toolkit-hero {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .toolkit-intro {
        justify-self: start;
    }

    .toolkit-meta {
        justify-content: flex-start;
    }

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

@media (max-width: 768px) {

    .toolkit-main {
        padding: 125px 0 65px;
    }

    .toolkit-hero {
        gap: 32px;
        padding-bottom: 65px;
    }

    .toolkit-title {
        margin-top: 22px;
        font-size: clamp(58px, 18vw, 96px);
    }

    .toolkit-title span {
        -webkit-text-stroke: 1px var(--white);
    }

    .toolkit-intro {
        font-size: 15px;
    }

    .toolkit-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .tool-card {
        min-height: 270px;
        border-radius: 18px;
        padding: 23px;
    }

    .toolkit-tracking {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .toolkit-footer {
        align-items: flex-start;
        flex-direction: column;
    }
}
.toolkit-checked {
    display: inline-block;
    margin-left: 8px;
    color: #66666f;
}
