/* =========================================================================
   PropaLogic Style System - Simplified & Single Screen
   ========================================================================= */

:root {
    --bg-dark: #000000;
    --industrial-orange: #ff5e00;
    --deep-grey: #1a1a1a;
    --mid-grey: #444444;
    --light-grey: #888888;
    --pure-white: #ffffff;

    --bg-color: var(--bg-dark);
    --text-primary: var(--pure-white);
    --text-secondary: var(--light-grey);
    --accent-gradient: linear-gradient(135deg, #333, #000);
    
    --glass-bg: rgba(255, 255, 255, 0.02);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.9);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Space Grotesk', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.4;
    overflow: hidden;
}

h1, h2, h3 { font-family: 'Bungee', cursive; font-weight: 400; }

#networkCanvas {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    z-index: 0; pointer-events: none;
}

.content-wrapper {
    position: relative;
    z-index: 10;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    height: 100vh;
}

header { padding: 4rem 0 0; text-align: center; perspective: 1200px; }

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(4rem, 20vw, 14rem); /* Even larger scale */
    font-family: 'Bungee', cursive;
    letter-spacing: -0.02em;
    line-height: 1.4; /* Generous breathing room to fix the G cutoff */
    margin-bottom: 2rem;
    transform: rotateX(20deg) rotateY(-10deg); /* Aggressive perspective */
    transform-style: preserve-3d;
    animation: float 6s ease-in-out infinite;
}

.logo strong {
    color: var(--text-primary);
    position: relative;
    text-shadow: 
        1px 1px 0 #111,
        2px 2px 0 #222,
        3px 3px 0 #222,
        4px 4px 0 #333,
        5px 5px 0 #333,
        6px 6px 0 #444,
        7px 7px 0 #444,
        8px 8px 0 #555,
        9px 9px 20px rgba(0,0,0,1);
    background: linear-gradient(180deg, #fff 40%, #888 50%, #444 51%, #ccc 100%);
    -webkit-background-clip: text;
    background-clip: text;
    filter: drop-shadow(0 0 15px rgba(255, 94, 0, 0.15)); /* Very subtle orange glow */
}

@keyframes float {
    0%, 100% { transform: rotateX(20deg) rotateY(-10deg) translateY(0); }
    50% { transform: rotateX(15deg) rotateY(-5deg) translateY(-20px); }
}

main {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding-bottom: 2rem;
}

.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: var(--glass-shadow);
}

.section-heading h2 { 
    font-size: clamp(1.2rem, 5vw, 2rem); 
    margin-bottom: 1rem; 
    text-align: center; 
}

.product-grid { display: flex; flex-direction: column; gap: 1rem; }

.product-card {
    padding: 1.25rem;
    display: flex;
    gap: 1.25rem;
    align-items: center;
    text-decoration: none;
    transition: 0.3s ease;
}

.product-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.05);
}

.icon-wrapper {
    width: 48px; height: 48px;
    border-radius: 10px;
    background: rgba(255, 94, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--industrial-orange);
    flex-shrink: 0;
}

.product-card h3 { 
    font-family: 'Bungee', cursive;
    font-size: clamp(0.9rem, 3vw, 1.1rem); 
    color: var(--text-primary); 
    margin-bottom: 0.2rem; 
}
.product-card p { font-size: 0.85rem; color: var(--text-secondary); }

.contact-form-container { padding: 2rem; }
.contact-form { display: flex; flex-direction: column; gap: 0.75rem; }

.form-group input, .form-group textarea {
    width: 100%;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: 'Space Grotesk', sans-serif;
}

.btn-primary {
    background: var(--industrial-orange);
    color: white;
    padding: 0.75rem;
    border-radius: 8px;
    font-weight: 800;
    font-family: 'Syne', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: none;
    cursor: pointer;
    transition: 0.2s;
    margin-top: 0.5rem;
}

.btn-primary:hover { filter: brightness(1.1); transform: translateY(-1px); }

footer { padding: 1.5rem 0; text-align: center; font-size: 0.8rem; color: var(--text-secondary); }

@media (max-width: 850px) {
    body { overflow-y: auto; }
    .content-wrapper { height: auto; padding: 0 1rem; }
    main { grid-template-columns: 1fr; gap: 2rem; }
    .logo { 
        font-size: clamp(1.5rem, 8.2vw, 5rem); 
        letter-spacing: -0.07em;
        transform: rotateX(10deg); /* Remove Y rotation to save horizontal space */
        width: 100%;
        text-align: center;
    }
}
