:root {
    --bg-void: #020205;
    --neon-cyan: #00F0FF;
    --neon-dim: rgba(0, 240, 255, 0.3);
    --text-white: #FFFFFF;
    --font-display: 'Orbitron', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'Courier Prime', monospace;
}
body {
    background-color: #000;
    background-image: linear-gradient(to bottom, rgba(2, 5, 20, 0.9), rgba(0, 0, 0, 0.95)), url('circuit-bg.jpg');
    background-size: cover;
    background-attachment: fixed;
    color: white;
    font-family: var(--font-body);
    margin: 0;
    padding-top: 100px; 
    overflow-x: hidden;
}
nav {
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    padding: 0 5%; 
    position: fixed; 
    width: 100%; 
    top: 0; 
    left: 0;
    z-index: 99999 !important;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px); 
    border-bottom: 1px solid rgba(0, 240, 255, 0.3);
    box-sizing: border-box; 
    height: 90px; /* Perfect height for 55px logo */
}

/* BALANCED LOGO STYLING */
.logo { 
    font-family: var(--font-display); 
    font-weight: 900; 
    font-size: 1.75rem; /* Perfect size: Not tiny, not huge */
    color: white; 
    text-decoration: none; 
    text-transform: uppercase; 
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    gap: 15px; /* Nice breathing room between icon and text */
}
.logo-icon {
    height: 55px; /* The "Goldilocks" size */
    width: auto;
    filter: drop-shadow(0 0 8px var(--neon-cyan));
    transition: 0.3s;
}
.logo:hover .logo-icon { transform: scale(1.05); filter: drop-shadow(0 0 15px var(--neon-cyan)); }
.logo span { color: var(--neon-cyan); }

.nav-links a { margin-left: 30px; text-decoration: none; color: #888; font-family: var(--font-mono); font-size: 0.75rem; text-transform: uppercase; transition: 0.3s; font-weight: bold; }
.nav-links a:hover, .active-link { color: var(--neon-cyan); text-shadow: 0 0 8px var(--neon-cyan); }

/* HERO LAYOUT (Keeps Image Large) */
.hero { min-height: 90vh; display: flex; align-items: center; justify-content: center; }
.hero-grid { 
    display: grid; 
    grid-template-columns: 0.8fr 1.2fr; /* Keeps image column wider */
    gap: 60px; 
    max-width: 1400px; 
    width: 90%; 
    align-items: center; 
}
.product-frame { position: relative; border: 1px solid var(--neon-dim); padding: 10px; background: rgba(0, 240, 255, 0.02); width: 100%; }
.product-frame::before { content: ''; position: absolute; top: -1px; left: -1px; width: 20px; height: 20px; border-top: 2px solid var(--neon-cyan); border-left: 2px solid var(--neon-cyan); }
.product-frame::after { content: ''; position: absolute; bottom: -1px; right: -1px; width: 20px; height: 20px; border-bottom: 2px solid var(--neon-cyan); border-right: 2px solid var(--neon-cyan); }
.hero-img { width: 100%; display: block; filter: contrast(1.1) brightness(1.1); }
h1 { font-family: var(--font-display); font-size: 3.5rem; line-height: 1; margin-bottom: 20px; text-transform: uppercase; }
.neon-text { color: var(--neon-cyan); text-shadow: 0 0 20px rgba(0, 240, 255, 0.5); }
p.sub-hero { font-family: var(--font-mono); color: #888; line-height: 1.6; margin-bottom: 40px; max-width: 500px; }
.timer-box { display: flex; gap: 20px; margin-bottom: 40px; }
.time-unit { text-align: center; }
.time-val { font-family: var(--font-display); font-size: 2rem; display: block; color: white; }
.time-lbl { font-family: var(--font-mono); font-size: 0.6rem; color: var(--neon-cyan); text-transform: uppercase; }
.btn-primary { background: var(--neon-cyan); color: #000; padding: 15px 40px; font-family: var(--font-display); font-weight: bold; text-transform: uppercase; text-decoration: none; display: inline-block; clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px); transition: 0.3s; cursor: pointer; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 30px var(--neon-cyan); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; padding: 100px 5%; max-width: 1400px; margin: 0 auto; }
.f-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); padding: 30px; transition: 0.3s; }
.f-card:hover { border-color: var(--neon-cyan); background: rgba(0, 240, 255, 0.05); }
.f-title { font-family: var(--font-display); color: white; margin-bottom: 10px; font-size: 1.2rem; }
.f-desc { font-family: var(--font-mono); color: #888; font-size: 0.8rem; line-height: 1.6; }
.legal-footer { border-top: 1px solid rgba(255, 255, 255, 0.1); background: #000; padding: 40px 5%; margin-top: 80px; font-family: var(--font-body); }
.legal-text { color: #444; font-size: 0.65rem; line-height: 1.6; max-width: 800px; margin: 0 auto; text-align: center; }
.legal-highlight { color: #666; }

@media(max-width:900px) { .hero-grid { grid-template-columns: 1fr; } h1 { font-size: 2.5rem; } .feature-grid { grid-template-columns: 1fr; } .logo { font-size: 1.4rem; } .logo-icon { height: 45px; } }
