/* --- FONTS & ROOT --- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600;800&display=swap');

:root {
    --bg-dark: #050507;
    --primary: #4b7f00;
    --primary-glow: rgba(75, 127, 0, 0.5);
    --accent-secondary: #96e548;
    --text-gray: #94a3b8;
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-bg: rgba(5, 5, 7, 0.8);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* --- CLEAN ACCENT SCROLLBAR --- */
::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--primary) rgba(255, 255, 255, 0.02);
}

body {
    background-color: var(--bg-dark);
    background-image: 
        radial-gradient(circle at 0% 0%, rgba(75, 127, 0, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 100% 100%, rgb(72, 229, 75, 0.1) 0%, transparent 40%);
    color: white;
    overflow-x: hidden;
    line-height: 1.6;
}

/* --- MODERN NAVBAR --- */
.main-nav {
    height: 72px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 6%;
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo-img {
    width: 60px;
    height: 60px;
    filter: drop-shadow(0 0 10px var(--primary-glow));
}

.nav-logo span {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    background: linear-gradient(to right, #fff, var(--text-gray));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links a {
    color: var(--text-gray);
    text-decoration: none;
    margin: 0 18px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover {
    color: white;
}

.nav-btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent-secondary));
    color: white !important;
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 700;
    margin-left: 10px;
}

/* --- HERO SECTION --- */
.hero {
    padding-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 100px;
}

.promo-badge {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.1;
    max-width: 900px;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(to bottom right, #fff 40%, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    color: var(--text-gray);
    font-size: clamp(1rem, 4vw, 1.15rem);
    max-width: 550px;
    margin-bottom: 2.5rem;
    /* ADD THESE TWO LINES */
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    width: 100%;
    margin-bottom: 5rem;
}

.hero-btn-main {
    background: white;
    color: black;
    padding: 16px 36px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 800;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-btn-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.15);
}

.hero-btn-sub {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    color: white;
    padding: 16px 36px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

/* --- 3D PREVIEW STACK --- */
.hero-previews {
    position: relative;
    width: 100%;
    max-width: 1100px;
    height: 450px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    perspective: 2000px;
}

.preview-card {
    position: absolute;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 40px 80px rgba(0,0,0,0.8);
    background: #0d0d0f;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s;
    overflow: hidden;
}

.preview-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-center {
    width: 640px;
    height: 380px;
    z-index: 10;
    transform: rotateX(5deg) rotateY(-5deg) translateZ(50px);
}

.card-left {
    width: 540px;
    height: 320px;
    z-index: 5;
    opacity: 0.3;
    transform: translateX(-240px) rotateX(5deg) rotateY(-5deg) translateZ(-100px);
}

.card-right {
    width: 540px;
    height: 320px;
    z-index: 5;
    opacity: 0.3;
    transform: translateX(240px) rotateX(5deg) rotateY(-5deg) translateZ(-150px);
}

/* --- RESPONSIVE BREAKPOINT (MOBILE & TABLET) --- */
@media (max-width: 768px) {
    .main-nav {
        padding: 0 5%;
    }

    /* Simple Mobile Nav Logic */
    .nav-links a:not(.nav-btn-primary) {
        display: none; 
    }

    .hero {
        padding-top: 120px;
    }

    .hero-actions {
        flex-direction: column;
        padding: 0 10%;
        gap: 12px;
    }

    .hero-btn-main, .hero-btn-sub {
        width: 100%;
        text-align: center;
    }

    /* Redefining the 3D stack for vertical space */
    .hero-previews {
        height: 320px;
        perspective: 1000px;
    }

    .card-center {
        width: 90%;
        height: auto;
        aspect-ratio: 16/10;
        transform: translateZ(20px);
    }

    .card-left, .card-right {
        width: 80%;
        height: auto;
        aspect-ratio: 16/10;
        opacity: 0.15;
    }

    .card-left {
        transform: translateY(30px) translateZ(-60px);
    }

    .card-right {
        transform: translateY(60px) translateZ(-120px);
    }

    /* Remove heavy hover for mobile performance */
    .hero-previews:hover .preview-card {
        transform: none;
    }
}

/* --- SMALL MOBILE --- */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-actions {
        padding: 0 6%;
    }
}

.partners-section {
    padding: 20px 0;
    margin: 40px 0; /* Adds space above and below the glass panel */
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 60px;
    /* --- GLASS PANEL EFFECT --- */
    background: rgba(255, 255, 255, 0.1); /* Semi-transparent white */
    backdrop-filter: blur(10px);          /* Blurs the background behind it */
    -webkit-backdrop-filter: blur(10px);  /* Safari support */
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2); /* Deepens the look */
}

.partners-track {
    display: flex;
    width: max-content; 
    animation: scroll-left 30s linear infinite;
}

.partners-track img {
    height: 50px; /* Slightly smaller looks more professional on a panel */
    width: auto;
    margin: 0 60px;
    flex-shrink: 0;
    /* This makes them look "stuck on" the glass */
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.3)); 
    transition: transform 0.3s ease;
}

.partners-track img:hover {
    transform: scale(1.1) translateY(-5px); /* Pops out slightly on hover */
}

@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-33.33%); }
}

.partners-track a {
    display: inline-block;
    text-decoration: none;
    cursor: pointer; /* Makes it clear it's a link */
}

/* Ensure images don't get weird gaps now that they are inside <a> tags */
.partners-track img {
    display: block; 
}

/* --- FOOTER --- */
.site-footer {
    text-align: center;
    padding: 30px 20px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(0, 0, 0, 0.3);
}