@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Logo-Driven System Palette */
    --fixt-navy: #000033;
    --fixt-white: #FFFFFF;
    --fixt-signal: #39FF14;
    --fixt-blue-muted: #1E293B;

    /* Text */
    --text-primary: #FFFFFF;
    --text-dark: #000033;
    --text-muted: rgba(255, 255, 255, 0.7);
    --text-dark-muted: #64748B;

    /* Global Styles */
    --container: 1140px;
    --radius: 0px;
    --grid-opacity: 0.03;
}

/* Premium Visual Utilities */
.bg-grid {
    background-image:
        linear-gradient(rgba(255, 255, 255, var(--grid-opacity)) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, var(--grid-opacity)) 1px, transparent 1px);
    background-size: 50px 50px;
}

.scanline {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            transparent 0%,
            rgba(57, 255, 20, 0.05) 50%,
            transparent 100%);
    background-size: 100% 4px;
    pointer-events: none;
    opacity: 0.5;
}

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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--fixt-navy);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* System Header */
header {
    background: var(--fixt-navy);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 32px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--fixt-white);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: 0.2s ease;
}

.nav-links a:hover {
    color: var(--fixt-signal);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
}

/* Strategic Buttons */
.btn {
    padding: 0.8rem 1.5rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid var(--fixt-white);
    transition: all 0.2s ease;
    width: auto;
    text-align: center;
}

.btn-primary {
    background: var(--fixt-white);
    color: var(--fixt-navy);
}

.btn-primary:hover {
    background: var(--fixt-signal);
    border-color: var(--fixt-signal);
}

.btn-outline {
    background: transparent;
    color: var(--fixt-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    border-color: var(--fixt-white);
}

@media (max-width: 480px) {
    .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}

/* Section Components */
section {
    padding: 8rem 0;
}

.hero {
    padding: 12rem 0 8rem;
    text-align: center;
}

.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2.5rem;
}

.dot {
    width: 10px;
    height: 10px;
    background: var(--fixt-signal);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--fixt-signal);
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -2px;
}

.hero p {
    font-size: 1.5rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 4rem;
    font-weight: 300;
}

/* Path Splitter */
.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.path-card {
    padding: 4rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s ease;
}

.path-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--fixt-signal);
}

.path-card h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.path-card p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

/* Trust & How it Works */
.step-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.step-card {
    padding: 2.5rem;
    border-left: 2px solid var(--fixt-signal);
}

.step-number {
    font-weight: 800;
    color: var(--fixt-signal);
    font-size: 0.8rem;
    margin-bottom: 1rem;
    display: block;
}

/* Philosophy */
.philosophy {
    background: var(--fixt-white);
    color: var(--fixt-navy);
}

.philosophy h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
}

.pill-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
}

.pill-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-weight: 800;
}

/* Footer Control */
footer {
    padding: 6rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
}

/* RESPONSIVE STRATEGY */
@media (max-width: 1024px) {
    section {
        padding: 6rem 0;
    }

    .hero {
        padding: 10rem 0 6rem;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

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

    .split-grid,
    .step-grid,
    .pill-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .path-card {
        padding: 2.5rem;
    }
}

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

    .hero h1 {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .path-card h2,
    .philosophy h2 {
        font-size: 2.1rem;
    }

    /* Center text on mobile for better flow */
    .hero,
    .hero p,
    .technician-pain-text,
    .customer-pain-text {
        text-align: center !important;
    }

    .technician-pain-list {
        direction: ltr !important;
        /* Reset direction for mobile */
    }

    .technician-pain-list li {
        justify-content: flex-start !important;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .footer-grid img {
        margin: 0 auto 2rem !important;
    }
}