:root {
    --bg-dark: #050505;
    --accent-blue: #0071FF;
    --text-main: #FFFFFF;
    --text-muted: #888888;
    --glass-border: rgba(255, 255, 255, 0.1);
}

body {
    font-family: 'Geist Sans', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    letter-spacing: -0.01em;
    margin: 0;
    overflow-x: hidden;
}

/* Navbar & Logo Fixes */
.navbar {
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1.2rem 0;
}

.navbar-brand {
    text-decoration: none !important;
    transition: opacity 0.2s ease;
}

.navbar-brand:hover {
    opacity: 0.8;
}

.logo-text {
    color: #FFFFFF !important;
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.5px;
}

.brand-img {
    height: 32px;
    width: auto;
    border-radius: 4px;
    /* This ensures the logo is visible and crisp on dark backgrounds */
    filter: brightness(1.2); 
}

/* Micro Badge */
.micro-badge {
    font-family: 'Geist Mono', monospace;
    font-size: 0.75rem;
    color: var(--accent-blue);
    border: 1px solid rgba(0, 113, 255, 0.4);
    padding: 6px 14px;
    border-radius: 6px;
    display: inline-block;
    letter-spacing: 0.15em;
    background: rgba(0, 113, 255, 0.08);
}

/* Hero Section */
.hero {
    padding: 10rem 0 6rem;
    position: relative;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    letter-spacing: -0.04em;
    line-height: 1.05;
}

.hero .lead {
    color: var(--text-muted);
    max-width: 750px;
    margin: 0 auto;
}

/* Methodology Section */
.methodology-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    padding: 50px 0;
    margin: 4rem 0;
}

.method-step h4 { font-family: 'Geist Mono', monospace; font-size: 1.1rem; margin-top: 15px; }
.method-step p { color: var(--text-muted); font-size: 0.95rem; margin-top: 10px; }
.step-num { color: var(--accent-blue); font-family: 'Geist Mono', monospace; font-weight: bold; font-size: 0.85rem; }

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 300px;
    gap: 24px;
}

.bento-item {
    background: rgba(15, 15, 15, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.bento-item:hover {
    border-color: var(--accent-blue);
    transform: translateY(-5px);
}

.item-large { grid-column: span 2; }
.item-tall { grid-row: span 2; }

.category-tag {
    font-family: 'Geist Mono', monospace;
    font-size: 0.65rem;
    color: var(--accent-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    display: block;
}

/* Images & Backgrounds */
.bento-image {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background-size: cover;
    background-position: center;
    opacity: 0.25;
    mask-image: linear-gradient(to top, black, transparent);
    -webkit-mask-image: linear-gradient(to top, black, transparent);
}

.bg-vcm { background-image: url('pexels-photo-1216589.jpeg'); }
.bg-turnaround { background-image: url('pexels-photo-1068523.jpeg'); }

/* Buttons */
.btn-primary-glow {
    background: var(--accent-blue);
    color: white;
    border-radius: 10px;
    padding: 16px 42px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 25px rgba(0, 113, 255, 0.3);
}

.btn-nav {
    color: white;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    font-weight: 500;
}

/* Background Animation */
.bg-mesh {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1;
    background: radial-gradient(circle at 50% -10%, rgba(0, 113, 255, 0.12) 0%, transparent 50%);
}

.footer-text {
    font-family: 'Geist Mono', monospace;
    color: #555;
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 991px) {
    .bento-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
    .methodology-grid { grid-template-columns: 1fr; }
    .item-large, .item-tall { grid-column: span 1; grid-row: span 1; }
}