/* ==========================================
   ARACHN - Stealth-Mode Web Ops
   ========================================== */

/* CSS Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #000000;
    --white: #FFFFFF;
    --blue: #3B9FF3;
    --gray: #333333;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ==========================================
   HEADER
   ========================================== */

.header {
    padding: 2rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--black);
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 32px;
    width: auto;
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hero {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 6rem 0 4rem;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--white);
}

.hero-tagline {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 400;
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
}

.tagline-word {
    display: inline-block;
    margin: 0 0.5rem;
}

.tagline-w {
    font-weight: 700;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.hero-services {
    font-size: clamp(0.875rem, 2vw, 1rem);
    margin-bottom: 1rem;
    opacity: 0.8;
}

.hero-est {
    font-size: clamp(0.75rem, 1.5vw, 0.875rem);
    opacity: 0.7;
    letter-spacing: 0.15em;
}

/* ==========================================
   FOOTER
   ========================================== */

.footer {
    padding: 4rem 0 2rem;
    background-color: var(--black);
    border-top: 1px solid var(--gray);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.footer-icon {
    margin-bottom: 1rem;
}

.icon-img {
    width: auto;
    height: 80px;
    object-fit: contain;
}

.contact-phone {
    font-size: 1.125rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.social-link {
    color: var(--white);
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-link:hover {
    color: var(--blue);
}

.footer-copyright {
    margin-top: 2rem;
    text-align: center;
    font-size: 0.75rem;
    opacity: 0.6;
    letter-spacing: 0.05em;
}

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .header {
        padding: 1.5rem 0;
    }

    .logo-img {
        height: 24px;
    }

    .hero {
        padding: 5rem 0 3rem;
    }

    .hero-tagline {
        line-height: 1.4;
    }

    .tagline-word {
        margin: 0 0.25rem;
    }

    .icon-img {
        width: auto;
        height: 60px;
    }

    .footer-social {
        gap: 1.25rem;
    }

    .footer {
        padding: 3rem 0 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-tagline {
        font-size: 1.25rem;
    }

    .tagline-word {
        display: block;
        margin: 0.25rem 0;
    }

    .icon-img {
        width: auto;
        height: 50px;
    }
}
