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

:root {

    --bg-main: #050816;

    --cyan: #00d4ff;
    --pink: #c026ff;

    --glass-bg: rgba(255,255,255,0.03);
    --glass-border: rgba(255,255,255,0.08);

}

html,
body {

    width: 100%;
    min-height: 100%;

    font-family: 'Inter', sans-serif;

    color: white;

    background:
        radial-gradient(circle at top left, rgba(0,255,255,0.10), transparent 30%),
        radial-gradient(circle at bottom right, rgba(255,0,255,0.10), transparent 30%),
        #050816;

}

/* GRID BACKGROUND */

.grid-bg {

    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);

    background-size: 40px 40px;

}

/* BODY */

body {

    padding-top: 82px;

}

/* FIXED NAVBAR */

.navbar {

    position: fixed;

    top: 0;
    left: 0;
    right: 0;

    height: 82px;

    z-index: 9999;

    backdrop-filter: blur(14px);

    background: rgba(5,8,22,0.82);

    border-bottom: 1px solid rgba(255,255,255,0.05);

}

/* CONTAINER */

.container {

    width: 100%;
    max-width: 1320px;

    margin: auto;

    padding-left: 24px;
    padding-right: 24px;

}

/* NAVBAR */

.navbar-inner {

    display: flex;

    align-items: center;
    justify-content: space-between;

    height: 82px;

}

.logo-wrapper {

    display: flex;

    align-items: center;

    gap: 14px;

    text-decoration: none;

}

.logo-image {

    width: 50px;
    height: 50px;

    border-radius: 999px;

    object-fit: cover;

    box-shadow:
        0 0 20px rgba(0,212,255,0.20),
        0 0 40px rgba(192,38,255,0.18);

}

.logo-text {

    font-size: 26px;
    font-weight: 800;

    letter-spacing: -1px;

    color: white;

}

/* GRADIENT */

.gradient-text {

    background:
        linear-gradient(
            90deg,
            var(--cyan),
            var(--pink)
        );

    background-clip: text;
    -webkit-background-clip: text;

    color: transparent;
    -webkit-text-fill-color: transparent;

}

/* RIGHT ACTIONS */

.right-actions {

    display: flex;

    align-items: center;

    gap: 14px;

}

/* DONATE */

.donate-btn {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    text-decoration: none;

    color: white;

    background: rgba(255,255,255,0.04);

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

    padding: 11px 18px;

    border-radius: 14px;

    transition: .25s;

    font-weight: 600;

}

.donate-btn:hover {

    border-color: rgba(0,212,255,0.25);

    background: rgba(0,212,255,0.08);

}

/* LANGUAGE */

.language-switch {

    display: flex;

    gap: 8px;

}

.lang-btn {

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

    background: rgba(255,255,255,0.04);

    color: white;

    padding: 11px 14px;

    border-radius: 12px;

    cursor: pointer;

    transition: .25s;

    font-weight: 600;

}

.lang-btn:hover {

    background: rgba(0,212,255,0.08);

    border-color: rgba(0,212,255,0.20);

}

/* HERO */

.hero-section {

    position: relative;

    z-index: 2;

    padding-top: 24px;
    padding-bottom: 18px;

}

.hero-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 42px;

    align-items: center;

}

.badge {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 11px 18px;

    border-radius: 999px;

    background: rgba(255,255,255,0.03);

    border: 1px solid rgba(0,212,255,0.16);

    margin-bottom: 18px;

    color: var(--cyan);

    font-weight: 600;

}

/* TITLE */

.hero-title {

    font-size: 74px;

    line-height: 1;

    letter-spacing: -3px;

    font-weight: 800;

    margin-bottom: 16px;

}

/* DESCRIPTION */

.hero-description {

    font-size: 19px;

    line-height: 1.7;

    color: rgba(255,255,255,0.72);

    max-width: 620px;

}

/* HERO IMAGE */

.hero-image-card {

    position: relative;

    overflow: hidden;

    border-radius: 24px;

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

    background: rgba(255,255,255,0.03);

    height: 340px;

}

.hero-image-card img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

}

.hero-image-overlay {

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    padding: 20px;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,0.85),
            transparent
        );

}

.hero-image-badge {

    display: inline-flex;

    padding: 8px 14px;

    border-radius: 12px;

    background:
        linear-gradient(
            90deg,
            var(--cyan),
            var(--pink)
        );

    color: white;

    font-size: 13px;
    font-weight: 700;

}

/* TOOLS */

.tools-section {

    position: relative;

    z-index: 2;

    padding-top: 4px;
    padding-bottom: 18px;

}

.tools-grid {

    display: grid;

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

    gap: 22px;

}

/* TOOL CARD */

.tool-card {

    display: block;

    text-decoration: none;

    overflow: hidden;

    border-radius: 24px;

    background: rgba(255,255,255,0.03);

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

    transition: .25s;

}

.tool-card:hover {

    transform: translateY(-4px);

    border-color: rgba(0,212,255,0.22);

    box-shadow:
        0 0 20px rgba(0,212,255,0.10);

}

/* TOOL IMAGE */

.tool-image {

    height: 220px;

    overflow: hidden;

}

.tool-preview-image {

    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

}

/* TOOL CONTENT */

.tool-content {

    padding: 22px;

}

.tool-content h4 {

    font-size: 24px;

    font-weight: 800;

    color: white;

    margin-bottom: 12px;

}

.tool-content p {

    color: rgba(255,255,255,0.60);

    line-height: 1.7;

    margin-bottom: 18px;

}

/* TOOL BUTTON */

.tool-btn {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: var(--cyan);

    font-weight: 700;

}

/* FOOTER */

.footer {

    position: relative;

    z-index: 2;

    border-top: 1px solid rgba(255,255,255,0.05);

    padding-top: 18px;
    padding-bottom: 18px;

}

.footer-inner {

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

}

.footer-copy {

    color: rgba(255,255,255,0.42);

}

.footer-links {

    display: flex;

    align-items: center;

    gap: 24px;

}

.footer-links a {

    text-decoration: none;

    color: rgba(255,255,255,0.42);

    transition: .25s;

}

.footer-links a:hover {

    color: var(--cyan);

}

/* RESPONSIVE */

@media(max-width: 1100px) {

    .hero-grid {

        grid-template-columns: 1fr;

    }

    .tools-grid {

        grid-template-columns: 1fr;

    }

}

@media(max-width: 768px) {

    body {

        padding-top: 110px;

    }

    .navbar {

        height: auto;

    }

    .navbar-inner {

        flex-direction: column;

        gap: 14px;

        padding-top: 14px;
        padding-bottom: 14px;

        height: auto;

    }

    .hero-section {

        padding-top: 14px;
        padding-bottom: 10px;

    }

    .hero-title {

        font-size: 48px;

        line-height: 1.05;

    }

    .hero-description {

        font-size: 17px;

    }

    .hero-image-card {

        height: 240px;

    }

    .footer-inner {

        flex-direction: column;

        text-align: center;

    }

}