:root {
    --bg-color: #111111;
    --card-bg: #1A1A1A;
    --text-main: #EAEAEA;
    --text-muted: #A0A0A0;
    --accent: #D4AF37; /* Metallic Gold */
    --accent-hover: #F2C94C;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
}

h1, h2, h3, h4, .logo, .badge, .btn-primary {
    font-family: 'JetBrains Mono', monospace;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* NAV */
.navbar { display: flex; justify-content: space-between; align-items: center; padding: 30px 0; }
.logo { font-weight: 700; font-size: 1.2rem; letter-spacing: -1px; color: #fff; }
.logo .accent { color: var(--accent); }
.btn-nav { color: var(--text-muted); text-decoration: none; margin-right: 20px; font-size: 0.9rem; }
.btn-nav:hover { color: var(--accent); }

/* HERO */
.hero { padding: 100px 0 140px; text-align: center; }
.badge { 
    display: inline-block; border: 1px solid var(--accent); color: var(--accent); 
    padding: 5px 12px; font-size: 0.7rem; margin-bottom: 25px; letter-spacing: 2px; font-weight: 700;
}
h1 { font-size: 3.5rem; margin: 10px 0 25px; color: #fff; line-height: 1.1; }
.sub-head { font-size: 1.15rem; color: var(--text-muted); max-width: 650px; margin: 0 auto 50px; }

/* BUTTONS */
.btn-primary {
    background-color: var(--accent); color: #000; padding: 14px 28px; text-decoration: none;
    font-weight: 700; font-size: 0.9rem; transition: 0.3s; border: 2px solid var(--accent);
}
.btn-primary:hover { background-color: transparent; color: var(--accent); }
.btn-secondary {
    color: var(--text-main); padding: 14px 28px; text-decoration: none; border: 2px solid #333;
    margin-left: 15px; font-size: 0.9rem; transition: 0.3s; font-weight: 700;
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }

/* FEATURES */
.features { background: var(--card-bg); padding: 100px 0; border-top: 1px solid #333; border-bottom: 1px solid #333; }
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; }
.card .icon { font-size: 2.5rem; margin-bottom: 20px; }
.card h3 { color: #fff; margin-bottom: 15px; font-size: 1.3rem; }
.card p { font-size: 1rem; color: var(--text-muted); }

/* PROOF GALLERY */
.proof { text-align: center; padding: 120px 0; background-color: #0f0f0f; }
.proof h2 { font-size: 2.5rem; color: #fff; margin-bottom: 10px; }
.proof p { color: var(--text-muted); margin-bottom: 60px; }

.gallery-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 40px; 
    align-items: start;
    width: 100%;
}

.gallery-item { 
    text-align: center; 
    min-width: 0; /* Prevents Grid Blowout */
}
.gallery-item h4 { color: var(--accent); margin: 25px 0 10px; font-size: 1.1rem; }
.gallery-item p { font-size: 0.9rem; color: var(--text-muted); }

.browser-mockup {
    width: 100%;
    border: 1px solid #444; 
    padding: 4px; /* Fixes cut-off images */
    background: #222;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5); 
    transition: transform 0.3s;
    overflow: hidden; /* Crops overlap */
    border-radius: 8px;
}
.browser-mockup:hover { transform: translateY(-5px); border-color: var(--accent); }

.dashboard-img { 
    width: 100%; 
    height: auto; 
    display: block; 
    object-fit: cover; 
    cursor: zoom-in; /* Indicates Lightbox */
}

/* FOOTER */
footer { text-align: center; padding: 120px 0; border-top: 1px solid #333; background: var(--card-bg); }
footer h2 { color: #fff; font-size: 2rem; margin-bottom: 10px; }
footer p { color: var(--text-muted); margin-bottom: 40px; }
.copyright { margin-top: 60px; font-size: 0.8rem; color: #555; }

/* LIGHTBOX MODAL CSS */
.modal {
    display: none; 
    position: fixed; 
    z-index: 9999; 
    padding-top: 50px; 
    left: 0; top: 0; width: 100%; height: 100%; 
    overflow: auto; 
    background-color: rgba(0,0,0,0.95);
    backdrop-filter: blur(5px);
}
.modal-content {
    margin: auto; display: block; width: 90%; max-width: 1400px; max-height: 90vh;
    object-fit: contain; border: 1px solid #333; box-shadow: 0 0 50px rgba(0,0,0,1);
    animation-name: zoom; animation-duration: 0.3s;
}
@keyframes zoom { from {transform:scale(0.9); opacity:0} to {transform:scale(1); opacity:1} }
.close {
    position: absolute; top: 15px; right: 35px; color: #f1f1f1;
    font-size: 40px; font-weight: bold; transition: 0.3s; cursor: pointer;
}
.close:hover, .close:focus { color: var(--accent); text-decoration: none; }