:root {
    --bg-color: #0d0d0d;
    --card-bg: rgba(255, 255, 255, 0.05);
    --text-main: #e0e0e0;
    --accent: #00f2ff; /* Electric Teal */
    --silver: #c0c0c0;
}

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

h1, h2, h3, .logo { font-family: 'Space Grotesque', sans-serif; }

/* Hero Split */
.hero { display: flex; height: 100vh; overflow: hidden; }

/* Hero Image Styling */
.hero-left { 
    flex: 1; 
    background-color: #000000; /* Pure black to match your logo background */
    display: flex;
    align-items: center; /* Vertical Center */
    justify-content: center; /* Horizontal Center */
    padding: 2rem;
    position: relative;
}

.hero-logo {
    max-width: 80%; /* Ensures it doesn't hit the edges */
    height: auto;
    filter: drop-shadow(0 0 20px rgba(0, 242, 255, 0.15)); /* Optional: subtle glow to match the accent */
    animation: fadeIn 1.5s ease-in-out;
}

/* Optional: Smooth fade in for the logo */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-right { 
    flex: 1.2; 
    padding: 4rem; 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    /* Gradient flows from pure black (at the split) to your dark theme color */
    background: linear-gradient(to right, #000000, #0d0d0d 20%);
}

.highlight { color: var(--accent); }

/* Bento Grid */
.services-section { padding: 8rem 2rem; max-width: 1200px; margin: 0 auto; }
.section-title { margin-bottom: 3rem; font-size: 2.5rem; text-align: center; }

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
}

.card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

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

.card-large { grid-column: span 2; }

.tag { 
    display: inline-block; margin-top: 1rem; font-size: 0.8rem; 
    color: var(--accent); border: 1px solid var(--accent); 
    padding: 2px 8px; border-radius: 4px;
}

/* Footer Status */
footer { padding: 4rem; text-align: center; font-family: monospace; opacity: 0.6; }
.status { color: #00ff00; }

/* Mobile View */
@media (max-width: 768px) {
    .hero { flex-direction: column; }
    .hero-left { height: 30vh; }
    .bento-grid { grid-template-columns: 1fr; }
    .card-large { grid-column: span 1; }
}
