/* styles.css - Cyber-Architectural Identity */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&display=swap');

:root {
    --primary: #3b82f6;
    --secondary: #0f172a;
    --accent: #10b981;
    --bg-dark: #020617;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
}

*, *::before, *::after {
    box-sizing: border-box;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: #f8fafc;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    line-height: 1.6;
    font-size: 16px;
}

main {
    flex: 1 0 auto;
}

footer {
    flex-shrink: 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Unique Hero Layout: Asymmetric Split */
.hero-split {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 80vh;
    align-items: center;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .hero-split {
        grid-template-columns: 1.2fr 0.8fr;
    }
}

/* Signature Card System: Beveled Glass */
.cyber-card {
    background: var(--glass);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 0px 24px 0px 24px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
}

.cyber-card:hover {
    border-color: var(--accent);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.1);
}

/* Distinctive Button System */
.btn-cyber {
    position: relative;
    padding: 14px 32px; /* Increased for touch targets */
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    overflow: hidden;
    transition: 0.3s;
    display: inline-block;
    text-align: center;
    min-height: 44px;
    cursor: pointer;
}

.btn-cyber::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: var(--accent);
    transition: 0.4s;
    z-index: -1;
}

.btn-cyber:hover {
    color: var(--bg-dark);
}

.btn-cyber:hover::before {
    left: 0;
}

.nav-blur {
    backdrop-filter: blur(20px);
    background: rgba(2, 6, 23, 0.9);
}

/* Mobile Menu Overlay */
.mobile-nav-active {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #0f172a;
    padding: 2rem;
    border-bottom: 1px solid var(--glass-border);
    gap: 1.5rem;
    z-index: 100;
}

.mobile-menu-btn {
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--glass-border);
    border-radius: 4px;
}

@media (max-width: 768px) {
    .hero-split { text-align: center; }
    h1 { font-size: 3rem !important; }
}
