﻿    <!-- inline CSS moved to public/css/marketing.css (P27-5 DC-05) -->
    <style data-removed="see marketing.css">
        :root {
            --primary-color: #004b87;
            --secondary-color: #007acc;
            --accent-green: #28a745;
            --text-dark: #222222;
            --text-light: #555555;
            --bg-white: #ffffff;
            --bg-nav: #f8f9fa;
            --border-light: #e0e0e0;
        }

        body, html {
            margin: 0;
            padding: 0;
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background-color: var(--bg-white);
            color: var(--text-dark);
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        /* -------------------------
           BACKGROUND SWOOP
           ------------------------- */
        .bg-swoop {
            position: fixed;
            top: 0;
            right: 0;
            width: 60%;
            height: 100vh;
            height: 100dvh;
            background: linear-gradient(135deg, rgba(0, 122, 204, 0.03) 0%, rgba(0, 75, 135, 0.08) 100%);
            clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
            z-index: -1;
            pointer-events: none;
        }

        /* -------------------------
           TOP NAVIGATION BAR
           ------------------------- */
        .top-nav {
            position: sticky;
            top: 0;
            width: 100%;
            background-color: rgba(248, 249, 250, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border-light);
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 40px;
            box-sizing: border-box;
            box-shadow: 0 2px 10px rgba(0,0,0,0.03);
        }

        .logo-area {
            display: flex;
            align-items: center;
            height: 60px; /* Constrain height to force wide logos to scale appropriately */
        }

        /* PLACEHOLDER LOGO (Hidden when body has-logo is active) */
        .logo-mark {
            font-family: 'Consolas', monospace;
            font-size: 2em;
            font-weight: 900;
            letter-spacing: -2px;
            color: var(--primary-color);
            line-height: 1;
        }

        /* ACTUAL HEADER LOGO STUB */
        .header-logo-img {
            max-height: 100%;
            width: auto;
            max-width: 400px; /* Prevent it from overtaking the nav on medium screens */
            display: none;
            object-fit: contain;
        }

        body.has-logo .header-logo-img { display: block; }
        body.has-logo .logo-mark { display: none; }

        /* NAVIGATION LINKS */
        .nav-links {
            display: flex;
            gap: 10px;
        }

        .nav-btn {
            background: transparent;
            border: none;
            padding: 10px 20px;
            font-size: 1.05em;
            font-weight: 600;
            color: var(--text-light);
            cursor: pointer;
            transition: all 0.2s ease;
            font-family: inherit;
            border-radius: 4px;
        }

        .nav-btn:hover {
            background-color: rgba(0, 122, 204, 0.05);
            color: var(--secondary-color);
        }

        .nav-btn.active {
            color: var(--primary-color);
            background-color: rgba(0, 75, 135, 0.05);
        }

        /* HAMBURGER MENU (Hidden on Desktop) */
        .menu-toggle {
            display: none;
            background: transparent;
            border: none;
            font-size: 2em;
            color: var(--primary-color);
            cursor: pointer;
            padding: 5px;
        }

        /* -------------------------
           MAIN CONTENT AREA
           ------------------------- */
        .main-container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 60px 40px;
            min-height: calc(100vh - 180px); /* Account for header and footer */
            min-height: calc(100dvh - 180px);
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        /* HERO LOGO BLOCK (Large Utilization) */
        .hero-logo-container {
            text-align: center;
            margin-bottom: 50px;
            width: 100%;
            display: none; /* Hidden unless image class is present */
        }
        
        .hero-logo-img {
            max-width: 800px;
            width: 100%;
            height: auto;
            object-fit: contain;
        }
        
        body.has-hero-logo .hero-logo-container { display: block; }

        .content-section {
            display: none;
            width: 100%;
            animation: fadeIn 0.4s ease-in-out;
        }

        .content-section.active {
            display: block;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        h1 {
            font-size: 3em;
            color: var(--primary-color);
            margin-top: 0;
            margin-bottom: 25px;
            letter-spacing: -1px;
            line-height: 1.1;
            text-align: center;
        }

        h2 {
            font-size: 1.8em;
            color: var(--secondary-color);
            margin-top: 40px;
            margin-bottom: 15px;
        }

        p {
            font-size: 1.15em;
            line-height: 1.8;
            color: var(--text-light);
            margin-bottom: 20px;
        }

        /* -------------------------
           STRUCTURED LISTS (FEATURES)
           ------------------------- */
        .feature-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
            margin-top: 30px;
        }

        .feature-item {
            background: var(--bg-white);
            border: 1px solid var(--border-light);
            border-left: 4px solid var(--secondary-color);
            padding: 25px;
            border-radius: 4px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.03);
        }

        .feature-item h3 {
            margin-top: 0;
            color: var(--primary-color);
            font-size: 1.3em;
            margin-bottom: 10px;
        }

        .feature-item p {
            margin: 0;
            font-size: 1em;
        }

        /* -------------------------
           CALL TO ACTION
           ------------------------- */
        .cta-box {
            margin-top: 50px;
            padding: 35px;
            background: rgba(0, 75, 135, 0.03);
            border: 1px dashed var(--secondary-color);
            border-radius: 8px;
            text-align: center;
        }

        .auth-notice {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: var(--primary-color);
            font-weight: bold;
            font-size: 1.2em;
            margin-bottom: 15px;
        }

        .auth-subtext {
            font-size: 1em;
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto;
        }

        /* -------------------------
           FOOTER
           ------------------------- */
        footer {
            text-align: center;
            padding: 30px;
            color: #999;
            font-size: 0.85em;
            border-top: 1px solid var(--border-light);
            background: var(--bg-white);
        }

        /* -------------------------
           RESPONSIVE MEDIA QUERIES
           ------------------------- */
        @media (max-width: 900px) {
            .top-nav { padding: 15px 20px; }
            
            /* Hamburger Menu Logic */
            .menu-toggle { display: block; }
            
            .nav-links {
                display: none; /* Hidden by default on mobile */
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: var(--bg-white);
                flex-direction: column;
                padding: 10px 0;
                box-shadow: 0 10px 15px rgba(0,0,0,0.1);
                border-bottom: 1px solid var(--border-light);
            }

            .nav-links.open { display: flex; }

            .nav-btn {
                padding: 15px 30px;
                width: 100%;
                text-align: left;
                border-radius: 0;
            }

            .main-container { padding: 40px 20px; }
            
            h1 { font-size: 2.2em; text-align: left; }
            h2 { font-size: 1.5em; margin-top: 30px; }
            
            /* On mobile, stack all content sections instead of tabbing */
            .content-section { display: block !important; margin-bottom: 60px; opacity: 1 !important; transform: none !important;}
            
            .bg-swoop { display: none; }
            
            /* Hide the giant hero logo on phones to save vertical space */
