/* ============================
   GLOBAL RESET & VARIABLES
   ============================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-black: #0d0d0d;
    --neon-green: #00ff99;
    --metallic-gray: #cccccc;
    --terminator-red: #ff0033;
    --font-mono: 'Share Tech Mono', 'Courier New', monospace;
    --font-sans: 'Inter', 'Roboto', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-black);
    color: var(--metallic-gray);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
}

/* ============================
   MATRIX BACKGROUND
   ============================ */

#matrix-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.3;
}

/* ============================
   NAVIGATION
   ============================ */

nav {
    position: fixed;
    top: 0;
    right: 0;
    padding: 2rem 3rem;
    z-index: 1000;
    display: flex;
    gap: 2rem;
}

nav a {
    font-family: var(--font-mono);
    color: var(--neon-green);
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--terminator-red);
    transition: width 0.3s ease;
}

nav a:hover {
    color: var(--terminator-red);
    text-shadow: 0 0 10px var(--terminator-red);
}

nav a:hover::after {
    width: 100%;
}

/* ============================
   HERO SECTION
   ============================ */

#hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-content h1 {
    font-family: var(--font-mono);
    font-size: clamp(3rem, 10vw, 8rem);
    color: var(--neon-green);
    text-shadow: 
        0 0 10px var(--neon-green),
        0 0 20px var(--neon-green),
        0 0 30px var(--neon-green),
        0 0 40px rgba(0, 255, 153, 0.5);
    letter-spacing: 0.5rem;
    margin-bottom: 1rem;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 
            0 0 10px var(--neon-green),
            0 0 20px var(--neon-green),
            0 0 30px var(--neon-green);
    }
    to {
        text-shadow: 
            0 0 20px var(--neon-green),
            0 0 30px var(--neon-green),
            0 0 40px var(--neon-green),
            0 0 50px rgba(0, 255, 153, 0.7);
    }
}

.tagline {
    font-family: var(--font-mono);
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    color: var(--metallic-gray);
    letter-spacing: 0.15rem;
    font-weight: 300;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* ============================
   SECTIONS
   ============================ */

section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 4rem 2rem;
    position: relative;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

section h2 {
    font-family: var(--font-mono);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--neon-green);
    letter-spacing: 0.3rem;
    margin-bottom: 3rem;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--neon-green);
    box-shadow: 0 0 10px var(--neon-green);
}

.content {
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    line-height: 1.9;
    color: var(--metallic-gray);
    font-weight: 300;
}

.content p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

.content p:last-child {
    margin-bottom: 0;
}

/* ============================
   CONTACT SECTION
   ============================ */

.contact-info {
    text-align: left;
}

.contact-info p {
    text-align: left;
    margin-bottom: 1rem;
}

.company-name {
    font-family: var(--font-mono);
    color: var(--neon-green);
    font-size: 1.2rem;
    letter-spacing: 0.1rem;
    margin-bottom: 2rem !important;
}

.obfuscated {
    color: var(--metallic-gray);
    font-family: var(--font-mono);
}

.contact-info a {
    color: var(--neon-green);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.contact-info a:hover {
    color: var(--terminator-red);
    text-shadow: 0 0 10px var(--terminator-red);
}

.address {
    margin-top: 1rem;
    font-size: 0.95rem;
    opacity: 0.8;
}

/* ============================
   FOOTER
   ============================ */

footer {
    padding: 3rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(0, 255, 153, 0.2);
    position: relative;
}

footer p {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--metallic-gray);
    opacity: 0.7;
    letter-spacing: 0.05rem;
}

/* ============================
   GLITCH EFFECTS (OPTIONAL)
   ============================ */

.glitch-text {
    position: relative;
}

/* ============================
   RESPONSIVE DESIGN
   ============================ */

@media (max-width: 768px) {
    nav {
        padding: 1.5rem 1.5rem;
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    nav a {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }

    section {
        min-height: auto;
        padding: 3rem 1.5rem;
    }

    section h2 {
        margin-bottom: 2rem;
    }

    .content p {
        text-align: left;
    }

    .hero-content h1 {
        letter-spacing: 0.3rem;
    }

    .tagline {
        letter-spacing: 0.1rem;
    }
}

@media (max-width: 480px) {
    nav {
        padding: 1rem 1rem;
        gap: 1rem;
    }

    nav a {
        font-size: 0.7rem;
    }

    section {
        padding: 2.5rem 1rem;
    }

    .hero-content h1 {
        letter-spacing: 0.2rem;
    }
}

/* ============================
   HOVER EFFECTS & INTERACTIONS
   ============================ */

::selection {
    background: var(--neon-green);
    color: var(--bg-black);
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-black);
}

::-webkit-scrollbar-thumb {
    background: var(--neon-green);
    box-shadow: 0 0 10px var(--neon-green);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--terminator-red);
    box-shadow: 0 0 10px var(--terminator-red);
}

