﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #0b0b12;
    color: white;
    min-height: 100vh;
}

/* HEADER */

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    background: rgba(10,10,18,0.96);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-mark {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 0 20px rgba(124,58,237,0.35);
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 1px;
}

/* NAVIGATION */

.nav-links {
    display: flex;
    gap: 28px;
}

    .nav-links a {
        text-decoration: none;
        color: rgba(255,255,255,0.75);
        font-weight: 500;
        transition: 0.2s ease;
    }

        .nav-links a:hover {
            color: white;
        }

/* HERO */

.hero {
    max-width: 900px;
    margin: 120px auto;
    text-align: center;
    padding: 0 24px;
}

    .hero h1 {
        font-size: 4rem;
        margin-bottom: 24px;
        line-height: 1.1;
    }

    .hero p {
        color: rgba(255,255,255,0.75);
        font-size: 1.1rem;
        line-height: 1.8;
    }

/* COMING SOON */

.coming-soon {
    margin-top: 48px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #22c55e;
}

/* CONTENT PAGES */

.content-page {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 24px 100px;
}

    .content-page h1 {
        font-size: 3rem;
        margin-bottom: 32px;
    }

    .content-page h2 {
        margin-top: 42px;
        margin-bottom: 16px;
        color: #a855f7;
    }

    .content-page p {
        color: rgba(255,255,255,0.8);
        line-height: 1.9;
        margin-bottom: 18px;
    }

    .content-page ul {
        margin-left: 24px;
        margin-bottom: 24px;
    }

    .content-page li {
        margin-bottom: 10px;
        color: rgba(255,255,255,0.8);
    }

/* LINKS */

a {
    color: #8b5cf6;
}

    a:hover {
        color: #c4b5fd;
    }

/* MOBILE */

@media (max-width: 768px) {

    header {
        flex-direction: column;
        gap: 18px;
        padding: 24px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 18px;
    }

    .hero {
        margin-top: 80px;
    }

        .hero h1 {
            font-size: 2.6rem;
        }

    .content-page h1 {
        font-size: 2.2rem;
    }

    .content-page h2 {
        font-size: 1.3rem;
    }
}
/* HEADER IMAGE LOGO */

.header-logo {
    height: 52px;
    width: auto;
    object-fit: contain;
}

/* APPS SECTION */

.apps-section {
    max-width: 1200px;
    margin: 120px auto;
    padding: 0 24px 120px;
    text-align: center;
}

.section-divider {
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, #4f46e5, #7c3aed);
    margin: 0 auto 32px;
    border-radius: 999px;
}

.apps-section h2 {
    font-size: 2.4rem;
    margin-bottom: 48px;
}

.app-card {
    max-width: 500px;
    margin: 0 auto;
    padding: 32px;
    border-radius: 24px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.25s ease;
}

    .app-card:hover {
        transform: translateY(-6px);
        border-color: rgba(124,58,237,0.45);
        box-shadow: 0 20px 40px rgba(0,0,0,0.35);
    }

.app-image {
    width: 100%;
    border-radius: 18px;
    margin-bottom: 24px;
}

.app-card h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.app-card p {
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
}
/* ROUTE IT LOGO */

.routeit-logo {
    width: 180px;
    max-width: 100%;
    margin-bottom: 22px;
}

/* APP DESCRIPTION */

.app-description {
    margin-bottom: 28px;
}

/* APP SHOWCASE IMAGE */

.mobile-preview {
    /* Forces the exact 19.5:9 aspect ratio */
    aspect-ratio: 9 / 19.5;
    /* Restricts height so it doesn't take up the whole mobile screen */
    max-height: 450px;
    /* Keeps the image crisp and prevents stretching or distortion */
    object-fit: contain;
    width: auto;
}
