:root {
    /* The "Sharp Green" Palette */
    --primary: #00ff88;       /* Sharp Neon Green */
    --primary-hover: #00e67a;
    --bg-dark: #06090f;      /* Near-black for maximum contrast */
    --bg-card: #0d121b;      /* Slightly lighter for cards */
    --text-white: #ffffff;
    --text-dim: #94a3b8;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Navigation --- */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: -1; /* Pushes it to the back */
    background-color: #0d1117; /* Dark theme base */
}

header {
    background: #112233;
    backdrop-filter: blur(10px); /* Modern frosted glass effect */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 10px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-list {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 20px;
    margin: 0;
}

.menu-link {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s;
}

.menu-link:hover {
    color: #00ff88;
}

/* Button Styling */
#signup, #sign {
    padding: 8px 18px;
    border-radius: 5px;
    cursor: pointer;
    border: none;
    font-weight: bold;
}

#signup { background: #00ff88; color: #fff; }
#sign { background: transparent; color: #fff; border: 1px solid #fff; }

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

/* Responsive Logic */
@media (max-width: 992px) {
    .menu-toggle { display: block; }
    
    .nav-list {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #161b22;
        flex-direction: column;
        padding: 20px 0;
        display: none; /* Hidden by default */
    }

    .nav-list.active {
        display: flex;
    }

    /* Hide/Show Hamburger icons */
    .menu-toggle[aria-expanded="true"] .hamburger { display: none; }
    .menu-toggle[aria-expanded="false"] .close-btn { display: none; }
}

/* --- Hero Section --- */
/* --- Hero Section with Background --- */
.hero {
    position: relative;
    padding: 220px 0 140px;
    /* Replace URL with your actual image file */
    background: url(images/bnb.jpg) no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    height: 700px;
}

/* The Overlay: This makes the green text pop against the image */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom, 
        rgba(6, 9, 15, 0.34) 0%, 
        rgba(6, 9, 15, 0.45)
    );
    z-index: 1;
}

/* Ensure content sits above the overlay */
.hero .container {
    position: relative;
    z-index: 2;
}
.btn-get {
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    background-color: #00ff88;
    color: #000;
    margin: auto;
    width: 150px;
    text-decoration: none;
}
/* Mobile Navbar Styles */
@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%; /* Hidden by default */
        width: 100%;
        height: 100vh;
        background: rgba(6, 9, 15, 0.98);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 999;
    }

    .nav-links.active {
        right: 0; /* Slides in */
    }

    .menu-toggle {
        display: block;
        z-index: 1001; /* Above the mobile menu */
    }
}

.hero-text h1 {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.hero-text h1 span {
    color: var(--primary);
    display: block; /* Moves "Wealth Securely" to its own line for impact */
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--text-dim);
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btns {
    display: inline-flex;
    gap: 20px;
    justify-content: center;
}

/* --- Steps Section --- */
.steps {
    padding: 100px 0;
}


.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.step-card {
    background: var(--bg-card);
    padding: 48px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.step-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* Accent line on hover */
.step-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--primary);
    transition: 0.4s;
}

.step-card:hover::after {
    width: 100%;
}

.icon-box {
    width: 50px;
    height: 50px;
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 24px;
}

/* --- Mobile Menu Toggle --- */
.menu-toggle {
    display: none;
    color: var(--primary);
    font-size: 1.8rem;
    cursor: pointer;
}

@media (max-width: 992px) {
    .desktop-only { display: none; }
    .menu-toggle { display: block; }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: #000;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 999;
    }

    .nav-links.active { right: 0; }
    
    .hero-btns {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}
/* --- Features Section --- */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 80px 5%;
    background: #06090f;
}

.feature-item {
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 136, 0.1);
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-item:hover {
    background: rgba(0, 255, 136, 0.05);
    border-color: var(--primary);
    transform: translateY(-5px);
}

.feature-title {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-description {
    color: var(--text-dim);
    font-size: 0.95rem;
}

/* --- Doyen / Portfolio Section --- */
.doyen {
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 100px 5%;
    flex-wrap: wrap;
}

.img9, .more {
    flex: 1;
    min-width: 350px;
}

.stock {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
}

.real {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.invest {
    color: var(--text-dim);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.learn {
    display: inline-block;
    padding: 12px 30px;
    color: var(--primary);
    border: 1px solid var(--primary);
    text-decoration: none;
    border-radius: 5px;
    transition: var(--transition);
}

.learn:hover {
    background: var(--primary);
    color: #000;
}

/* --- Investment Plans (Trade Section) --- */
.trade {
    padding: 100px 5%;
    text-align: center;
    background: #080c14;
}

.plans {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.accure {
    max-width: 800px;
    margin: 0 auto 60px;
    color: var(--text-dim);
}

.flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.trade .container {
    background: rgba(7, 87, 152, 0.1);
    width: 320px;
    padding: 40px 25px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.05);
    position: relative;
    transition: var(--transition);
    text-align: left;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.trade .container:hover {
    border-color: var(--primary);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
    transform: scale(1.02);
}

.silver {
    background: rgba(0, 255, 136, 0.1);
    color: var(--primary);
    border: none;
    padding: 5px 15px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.bronze {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #fff;
}

#hs {
    border: 0;
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin-bottom: 20px;
}

.return {
    font-size: 0.9rem;
    margin-bottom: 12px;
    color: var(--text-dim);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.return i {
    color: var(--primary);
    margin-top: 3px;
}

.return span {
    color: #fff;
    margin-left: auto;
    font-weight: 600;
}

.buy {
    width: 100%;
    margin-top: 25px;
    padding: 12px;
    background: var(--primary);
    border: none;
    color: #000;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.buy:hover {
    background: #fff;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .doyen { text-align: center; }
    .plans { font-size: 2rem; }
    .trade .container { width: 100%; }
}
/* --- Promo Card Section --- */
.card-reveal {
    padding: 80px 0;
    background: linear-gradient(to right, #06090f, #0d121b);
}

.promo-card {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    padding: 60px;
    border: 1px solid rgba(0, 255, 136, 0.1);
    gap: 40px;
    flex-wrap: wrap;
}

.promo-content { flex: 1; min-width: 300px; }

.badge {
    background: var(--primary);
    color: #000;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.promo-content h2 { font-size: 2.5rem; margin: 15px 0 5px; }
.card-brand { color: var(--primary); font-size: 1.5rem; margin-bottom: 20px; }
.promo-text { color: var(--text-dim); font-size: 1.1rem; }

.promo-image { flex: 1; min-width: 300px; text-align: center; }
.card-visual {
    width: 100%;
    max-width: 450px;
    border-radius: 15px;
    transform: rotate(-5deg); /* Stylized tilt */
    box-shadow: 20px 20px 50px rgba(0,0,0,0.5), 0 0 20px rgba(0, 255, 136, 0.2);
    transition: 0.5s;
}
.card-visual:hover { transform: rotate(0deg) scale(1.05); }

/* --- Why Choose Section --- */
.why-choose { padding: 100px 0; background: #06090f; }

.section-header { text-align: center; margin-bottom: 60px; }
.subtitle { color: var(--primary); font-weight: 600; text-transform: uppercase; }
.main-title { font-size: 2.5rem; margin: 10px 0; }
.description-text { color: var(--text-dim); max-width: 700px; margin: 0 auto; }

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.benefit-item {
    background: #0d121b;
    border-radius: 15px;
    overflow: hidden;
    border-bottom: 3px solid transparent;
    transition: 0.3s;
}
.benefit-item:hover { border-bottom: 3px solid var(--primary); transform: translateY(-10px); }
.benefit-item img { width: 100%; height: 200px; object-fit: cover; filter: grayscale(50%); }
.benefit-item:hover img { filter: grayscale(0%); }
.benefit-content { padding: 25px; color: var(--text-dim); font-size: 0.95rem; }

/* --- Partners Section --- */
.partners-section { text-align: center; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 60px; }
.partner-label { color: var(--text-dim); margin-bottom: 40px; font-weight: 500; }

.partner-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.partner-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.6;
    transition: 0.3s;
}
.partner-logo:hover { opacity: 1; }
.partner-logo img { width: 50px; height: 50px; border-radius: 50%; margin-bottom: 10px; border: 2px solid var(--primary); }
.partner-logo span { font-weight: 700; letter-spacing: 1px; font-size: 0.8rem; }

/* Mobile View */
@media (max-width: 768px) {
    .promo-card { padding: 30px; text-align: center; }
    .card-visual { transform: rotate(0); }
    .partner-flex { gap: 30px; }
}
/* ================= FAQ SECTION ================= */

.faq{
    padding:80px 8%;
    background:#0b0f1a;
    text-align:center;
}

.faq h2{
    font-size:36px;
    color:#fff;
    margin-bottom:10px;
}

.gold{
    color:#00ff88;
    margin-bottom:40px;
    font-size:17px;
}

.faq-item{
    max-width:800px;
    margin:15px auto;
    background:#111827;
    border-radius:8px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,0.08);
}

.faq-item summary{
    padding:18px 20px;
    cursor:pointer;
    font-size:18px;
    font-weight:600;
    color:#fff;
    list-style:none;
    position:relative;
}

.faq-item summary::after{
    content:"+";
    position:absolute;
    right:20px;
    font-size:22px;
    color:#00ff88;
}

.faq-item[open] summary::after{
    content:"−";
}

.faq-item p{
    padding:0 20px 20px 20px;
    color:#cfcfcf;
    line-height:1.6;
    text-align:left;
}

/* ================= CTA SECTION ================= */

.end{
    background:#060a14;
    padding:80px 8% 40px;
}

.endxx{
    text-align:center;
    margin-bottom:60px;
}

.with{
    font-size:34px;
    color:#fff;
    margin-bottom:20px;
}

.withx{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:40px;
    flex-wrap:wrap;
}

.endx{
    max-width:550px;
    color:#cfcfcf;
    line-height:1.7;
    font-size:17px;
}

.siderx{
    width:220px;
}

.sider-bt{
    margin:20px 10px 0;
    padding:14px 30px;
    border:none;
    font-size:16px;
    font-weight:600;
    border-radius:6px;
    cursor:pointer;
    background:#00ff88;
    color:#000;
    transition:0.3s;
}

.sider-bt:hover{
    background:#00ff88;
    transform:translateY(-2px);
}

/* ================= FOOTER ================= */

.food{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:40px;
    border-top:1px solid rgba(255,255,255,0.08);
    padding-top:40px;
}

.foodx img{
    width:150px;
    margin-bottom:15px;
}

.paltx{
    color:#bcbcbc;
    line-height:1.6;
}

.contact{
    color:#fff;
    margin-bottom:15px;
}

.foodx a{
    display:block;
    margin:8px 0;
    color:#cfcfcf;
    text-decoration:none;
    transition:0.3s;
}

.foodx a:hover{
    color:#00ff88;
}

.foodx i{
    margin-right:8px;
    color:#00ff88;
}

/* ================= MOBILE ================= */

@media(max-width:768px){

    .faq h2{
        font-size:28px;
    }

    .with{
        font-size:26px;
    }

    .withx{
        flex-direction:column;
    }

    .siderx{
        width:180px;
    }

}
.footer{
    text-align:center;
    padding:20px 0;
    color:#bcbcbc;
    font-size:14px;
}
/* ================= About us================= */
/* --- About Section Styling --- */
.about-section {
    padding: 120px 0;
    background: #06090f;
    position: relative;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

/* Visual Side */
.about-visual {
    position: relative;
}

.certificate-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 255, 136, 0.2);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.cert-img {
    width: 100%;
    display: block;
    filter: brightness(0.8);
    transition: 0.5s ease;
}

.certificate-wrapper:hover .cert-img {
    filter: brightness(1);
    transform: scale(1.05);
}

.cert-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 255, 136, 0.9);
    color: #000;
    padding: 10px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}

.trust-badge {
    display: flex;
    gap: 20px;
    margin-top: -40px;
    position: relative;
    z-index: 10;
    padding: 0 20px;
}

.stat {
    background: var(--bg-card);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
    flex: 1;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.stat h4 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.stat p {
    color: var(--text-dim);
    font-size: 0.8rem;
    text-transform: uppercase;
}

/* Content Side */
.about-title {
    font-size: 3rem;
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-title span {
    color: var(--primary);
}

.about-paragraphs p {
    color: var(--text-dim);
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-commitment {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(0, 255, 136, 0.05);
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid var(--primary);
    margin: 40px 0;
}

.icon-circle {
    min-width: 50px;
    height: 50px;
    background: var(--primary);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.btn-cta {
    background: var(--primary);
    color: #000;
    border: none;
    padding: 18px 35px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-cta:hover {
    background: #fff;
    transform: translateX(10px);
}

/* Responsive */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-content {
        text-align: center;
    }
    
    .about-commitment {
        text-align: left;
    }
    
    .btn-cta {
        margin: 0 auto;
    }
}
/* ================= End of About us================= */
/* ================= Contact us================= */
/* --- Contact Section --- */
/* CONTACT SECTION */
.contact-section{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:40px;
    padding:80px 8%;
    background:#0b0f1a;
    color:#fff;
    flex-wrap:wrap;
}

/* CONTACT INFO */
.contact-info{
    flex:1;
    min-width:280px;
}

.contact-title{
    font-size:2.2rem;
    margin-bottom:15px;
    color:#00ff88;
}

.contact-info p{
    line-height:1.6;
    margin-bottom:20px;
    color:#cfcfcf;
}

.contact-details{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.contact-details a,
.contact-details p{
    text-decoration:none;
    color:#ffffff;
    font-size:15px;
}

.contact-details i{
    margin-right:10px;
    color:#00ff88;
}

/* CONTACT FORM */
.contact-form{
    flex:1;
    min-width:300px;
    background:#131a2a;
    padding:35px;
    border-radius:10px;
    box-shadow:0 10px 30px rgba(0,0,0,0.4);
}

.contact-form h3{
    margin-bottom:25px;
    font-size:1.6rem;
    color:#00ff88;
}

/* FORM GROUP */
.form-group{
    display:flex;
    flex-direction:column;
    margin-bottom:18px;
}

.form-group label{
    font-size:14px;
    margin-bottom:6px;
    color:#ddd;
}

.form-group input,
.form-group textarea{
    padding:12px;
    border:none;
    border-radius:6px;
    outline:none;
    background:#0b0f1a;
    color:#fff;
    font-size:14px;
}

.form-group textarea{
    resize:none;
    min-height:120px;
}

/* BUTTON */
.submit-btn{
    width:100%;
    padding:13px;
    border:none;
    border-radius:6px;
    background:#00ff88;
    color:#000;
    font-size:16px;
    font-weight:bold;
    cursor:pointer;
    transition:0.3s;
}

.submit-btn:hover{
    background:#00e67a;
}

/* RESPONSIVE */
@media (max-width:900px){

.contact-section{
    flex-direction:column;
    padding:60px 6%;
}

.contact-form{
    width:100%;
}

.contact-title{
    font-size:1.9rem;
}

}
/* --- How It Works Section --- */
.how-it-works {
    padding: 100px 0;
    background: #06090f;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 10px;
}

.section-title span {
    color: var(--primary);
}

.work-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.work-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.work-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.card-header i {
    font-size: 2rem;
    color: var(--primary);
}

.card-header h2 {
    font-size: 1.8rem;
}

.card-intro {
    color: var(--text-dim);
    margin-bottom: 30px;
}

/* Custom List Styling */
.custom-list {
    list-style: none;
}

.custom-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.list-icon {
    color: var(--primary);
    background: rgba(0, 255, 136, 0.1);
    width: 35px;
    height: 35px;
    min-width: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.list-text {
    color: var(--text-white);
    font-size: 0.95rem;
    line-height: 1.5;
}

.list-text strong {
    display: block;
    color: var(--primary);
}

/* Crypto Badges */
.crypto-badges {
    margin-top: 30px;
    display: flex;
    gap: 10px;
}

.crypto-badges span {
    background: rgba(255, 255, 255, 0.05);
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-dim);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Allocation Bars Styling */
.strategy-title {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.bar-item {
    margin-bottom: 20px;
}

.bar-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 600;
}

.bar-bg {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary);
    border-radius: 10px;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .work-grid {
        grid-template-columns: 1fr;
    }
}
/* --- Compliance & Revenue Section --- */
.compliance-section {
    padding: 100px 0;
    background: #080c14; /* Slightly different dark shade to separate sections */
}

.compliance-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
}

.compliance-card, .revenue-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.policy-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.policy-box {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.policy-box i {
    color: var(--primary);
    font-size: 1.4rem;
    background: rgba(0, 255, 136, 0.1);
    padding: 15px;
    border-radius: 12px;
}

.policy-box h4 {
    color: var(--text-white);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.policy-box p {
    color: var(--text-dim);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Revenue Fee List */
.revenue-intro {
    color: var(--text-dim);
    margin-bottom: 30px;
}

.fee-structure {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.fee-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border-left: 3px solid transparent;
}

.fee-item:hover {
    border-left-color: var(--primary);
    background: rgba(0, 255, 136, 0.05);
}

.fee-label {
    color: var(--text-dim);
    font-weight: 500;
}

.fee-value {
    color: var(--primary);
    font-weight: 800;
    font-family: 'Courier New', monospace; /* Tech/Finance feel */
}

.highlight-fee {
    background: rgba(0, 255, 136, 0.1);
}

.sustainability-badge {
    margin-top: 35px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border: 1px dashed var(--primary);
    border-radius: 12px;
}

.sustainability-badge i {
    color: var(--primary);
    font-size: 1.5rem;
}

.sustainability-badge p {
    color: var(--text-dim);
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 992px) {
    .compliance-grid {
        grid-template-columns: 1fr;
    }
}
/* --- Global Auth Layout --- */
.auth-wrapper {
    min-height: 100vh;
    background: #06090f;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
}

.back-link {
    position: fixed;
    top: 30px;
    left: 40px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 10;
}

.auth-box {
    width: 100%;
    max-width: 650px;
    background: #0d121b;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.6);
}

.auth-top {
    text-align: center;
    margin-bottom: 40px;
}

.auth-top h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.auth-top h2 span {
    color: var(--primary);
}

.auth-top p {
    color: var(--text-dim);
}

/* Input Fields */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.full {
    grid-column: span 2;
}

.input-field label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-dim);
    margin-bottom: 8px;
    font-weight: 600;
}

.input-inner {
    position: relative;
    display: flex;
    align-items: center;
}

.input-inner i {
    position: absolute;
    left: 15px;
    color: var(--primary);
    opacity: 0.8;
}

.input-inner input {
    width: 100%;
    padding: 15px 15px 15px 45px;
    background: #06090f;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.input-inner input:focus {
    border-color: var(--primary);
    background: #080c14;
    outline: none;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.1);
}

/* Button & Footer */
.submit-auth-btn {
    width: 100%;
    margin-top: 40px;
    padding: 18px;
    background: var(--primary);
    color: #000;
    border: none;
    border-radius: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.submit-auth-btn:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

.auth-bottom {
    text-align: center;
    margin-top: 30px;
    color: var(--text-dim);
}

.auth-bottom a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 600px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    .full {
        grid-column: span 1;
    }
    .auth-box {
        padding: 30px 20px;
    }
}
/* --- Root Variables for easy changes --- */
:root {
    --primary: #00ff88;
    --primary-glow: rgba(0, 255, 136, 0.3);
    --bg-dark: #06090f;
    --card-glass: rgba(13, 18, 27, 0.8);
    --text-dim: #a0aec0;
}

/* --- Particles Background Fixed --- */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: var(--bg-dark);
    z-index: -1; /* Keeps it behind everything */
}

/* --- Layout & Container --- */
.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.back-link {
    position: absolute;
    top: 30px;
    left: 30px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s ease;
    z-index: 10;
}

.back-link:hover {
    color: #fff;
    transform: translateX(-5px);
}

/* --- The Glassmorphism Card --- */
.auth-card {
    width: 100%;
    max-width: 450px;
    background: var(--card-glass);
    backdrop-filter: blur(15px); /* This creates the frosted glass effect */
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* --- Header & Logo --- */
.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-logo {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: #000;
    font-weight: 800;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin: 0 auto 15px;
    box-shadow: 0 0 20px var(--primary-glow);
}

.auth-title {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 8px;
}

.auth-header p {
    color: var(--text-dim);
    font-size: 0.95rem;
}

/* --- Form Fields --- */
.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    color: var(--text-dim);
    font-size: 0.85rem;
    margin-bottom: 8px;
    font-weight: 500;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 15px;
    color: var(--primary);
    font-size: 0.9rem;
    opacity: 0.7;
}

.input-wrapper input {
    width: 100%;
    padding: 14px 15px 14px 45px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    transition: 0.3s;
}

.input-wrapper input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 10px var(--primary-glow);
}

/* --- Action Button --- */
.auth-btn {
    width: 100%;
    padding: 16px;
    background: var(--primary);
    color: #000;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.3s;
    margin-top: 10px;
}

.auth-btn:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* --- Footer Links --- */
.auth-footer {
    text-align: center;
    margin-top: 25px;
}

.auth-footer p {
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.auth-footer a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.auth-footer a:hover {
    text-decoration: underline;
}

.forgot-link {
    font-size: 0.8rem !important;
    opacity: 0.8;
}