/* CRO Report Shared Styles v1 */
/* Auto-generated by generate_external_css.py — do not edit manually */


    :root {
        --navy: #0a1628;
        --navy-light: #132038;
        --navy-medium: #1e3a5f;
        --navy-hover: #2d4a6f;
        --gold: #d4a853;
        --gold-muted: #b8956a;
        --gold-dark: #d97706;
        --red: #dc3545;
        --green: #28a745;
        --green-dark: #166534;
        --gray-50: #f8fafc;
        --gray-100: #f1f5f9;
        --gray-200: #e2e8f0;
        --gray-300: #cbd5e1;
        --gray-500: #64748b;
        --gray-600: #475569;
        --gray-700: #334155;
        --gray-800: #1e293b;
        --white: #ffffff;
    }

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

    body {
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        background: var(--gray-50);
        color: var(--gray-800);
        line-height: 1.6;
    }


    /* Navigation */
    .site-header {
        background: var(--white);
        border-bottom: 1px solid var(--gray-200);
        padding: 16px 0;
        position: sticky;
        top: 0;
        z-index: 100;
    }

    .header-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 24px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        display: flex;
        align-items: center;
        gap: 12px;
        text-decoration: none;
        color: var(--navy-medium);
        font-weight: 700;
        font-size: 1.1rem;
    }

    .logo img, .logo-img {
        width: 40px;
        height: 40px;
        border-radius: 8px;
    }

    .nav, .nav-links {
        display: flex;
        gap: 24px;
        align-items: center;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .nav a, .nav-links a {
        color: var(--gray-600);
        text-decoration: none;
        font-size: 0.95rem;
        font-weight: 500;
        transition: color 0.2s;
    }

    .nav a:hover, .nav-links a:hover { color: var(--navy-medium); }
    .nav a.active { color: var(--navy-medium); font-weight: 600; }

    .nav-cta, .btn-subscribe {
        background: var(--navy-medium) !important;
        color: var(--white) !important;
        padding: 8px 16px;
        border-radius: 6px;
        font-weight: 500;
    }
    .nav-cta:hover, .btn-subscribe:hover {
        background: var(--navy-hover) !important;
    }

    /* Mobile Navigation */
    .mobile-menu-btn {
        display: none;
        background: none;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
        color: var(--navy-medium);
    }
    .mobile-nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    .mobile-nav-overlay.active { opacity: 1; }
    .mobile-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        max-width: 85%;
        height: 100vh;
        background: var(--white);
        z-index: 1000;
        padding: 1.5rem;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
        transition: right 0.3s ease;
        overflow-y: auto;
    }
    .mobile-nav.active { right: 0; }
    .mobile-nav-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 2rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid var(--gray-200);
    }
    .mobile-nav-header .logo-text {
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--navy-medium);
    }
    .mobile-nav-close {
        background: none;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
        color: var(--gray-500);
    }
    .mobile-nav-links {
        list-style: none;
        margin: 0 0 2rem 0;
        padding: 0;
    }
    .mobile-nav-links li { border-bottom: 1px solid var(--gray-100); }
    .mobile-nav-links a {
        display: block;
        padding: 1rem 0;
        font-size: 1rem;
        font-weight: 500;
        color: var(--gray-600);
        text-decoration: none;
    }
    .mobile-nav-subscribe {
        display: block;
        width: 100%;
        padding: 1rem;
        background: var(--navy-medium);
        color: var(--white);
        text-align: center;
        font-weight: 600;
        border-radius: 8px;
        text-decoration: none;
    }

    @media (max-width: 768px) {
        .nav, .nav-links { display: none; }
        .mobile-menu-btn { display: block; }
        .mobile-nav-overlay { display: block; pointer-events: none; }
        .mobile-nav-overlay.active { pointer-events: auto; }
    }


    /* Layout */
    .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
    .container-narrow { max-width: 900px; margin: 0 auto; padding: 0 24px; }

    main { padding: 48px 0; }
    .section { margin-bottom: 56px; }

    /* Page Header */
    .page-header {
        background: var(--white);
        padding: 48px 0 40px;
        border-bottom: 1px solid var(--gray-200);
    }

    .breadcrumb {
        font-size: 0.85rem;
        color: var(--gray-500);
        margin-bottom: 16px;
    }
    .breadcrumb a { color: var(--gold-muted); text-decoration: none; }
    .breadcrumb a:hover { text-decoration: underline; }

    .page-label {
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: var(--gold-muted);
        margin-bottom: 12px;
    }

    .page-header h1 {
        font-size: 2.25rem;
        font-weight: 700;
        color: var(--navy);
        margin-bottom: 12px;
    }

    .page-header .lead {
        font-size: 1.1rem;
        color: var(--gray-600);
        max-width: 700px;
        line-height: 1.7;
    }


    /* Cards */
    .tool-card, .job-card, .company-card, .salary-card {
        background: var(--white);
        border: 1px solid var(--gray-200);
        border-radius: 12px;
        padding: 24px;
        text-decoration: none;
        color: inherit;
        transition: all 0.2s;
    }

    .tool-card:hover, .job-card:hover, .company-card:hover, .salary-card:hover {
        border-color: var(--gold);
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        transform: translateY(-2px);
    }

    .card-badge {
        display: inline-block;
        padding: 4px 10px;
        border-radius: 4px;
        font-size: 0.7rem;
        font-weight: 700;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        margin-bottom: 14px;
        width: fit-content;
    }

    .badge-live { background: rgba(40, 167, 69, 0.12); color: var(--green); }
    .badge-soon { background: rgba(100, 116, 139, 0.12); color: var(--gray-500); }
    .badge-comparison { background: rgba(212, 168, 83, 0.15); color: var(--gold-muted); }
    .badge-remote { background: #dcfce7; color: var(--green-dark); }

    /* Stats */
    .stats-row {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
        margin-top: 32px;
    }

    @media (max-width: 768px) { .stats-row { grid-template-columns: repeat(2, 1fr); } }

    .stat-box {
        background: var(--gray-50);
        border: 1px solid var(--gray-200);
        border-radius: 10px;
        padding: 18px;
        text-align: center;
    }

    .stat-number {
        font-size: 1.75rem;
        font-weight: 700;
        color: var(--navy);
        line-height: 1;
    }

    .stat-number.gold { color: var(--gold-muted); }
    .stat-number.red { color: var(--red); }
    .stat-number.green { color: var(--green); }

    .stat-label {
        font-size: 0.75rem;
        color: var(--gray-500);
        margin-top: 6px;
    }


    /* CTA Box */
    .cta-box {
        background: var(--navy);
        color: var(--white);
        border-radius: 12px;
        padding: 32px;
        text-align: center;
        margin: 40px 0;
    }

    .cta-box h3 {
        font-size: 1.25rem;
        margin-bottom: 10px;
    }

    .cta-box p {
        color: var(--gray-300);
        margin-bottom: 20px;
    }

    .btn {
        display: inline-block;
        padding: 12px 24px;
        border-radius: 8px;
        font-weight: 600;
        text-decoration: none;
        font-size: 0.95rem;
    }

    .btn-gold { background: var(--gold); color: var(--navy); }
    .btn-gold:hover { background: var(--gold-muted); }


    /* Related Links */
    .related-links {
        margin: 32px 0;
        padding: 16px 0;
        border-top: 1px solid var(--gray-200);
        font-size: 0.9rem;
        color: var(--gray-600);
    }
    .related-links a {
        color: var(--navy);
        text-decoration: none;
        font-weight: 500;
    }
    .related-links a:hover {
        color: var(--gold);
        text-decoration: underline;
    }


    /* Footer */
    .site-footer, .footer {
        background: var(--white);
        border-top: 1px solid var(--gray-200);
        padding: 24px 0;
        margin-top: 48px;
    }

    .footer-content {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 24px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 0.9rem;
        color: var(--gray-500);
    }

    .footer-content a, .footer a { color: var(--gray-600); text-decoration: none; }
    .footer-links a { margin-left: 24px; }
    .footer-links a:hover { color: var(--navy); }

    @media (max-width: 768px) {
        .footer-content { flex-direction: column; gap: 12px; text-align: center; }
        .footer-links a { margin: 0 12px; }
    }


    /* Page Header (gradient style) */
    .header {
        background: linear-gradient(135deg, var(--navy-medium) 0%, var(--navy-hover) 100%);
        color: white;
        padding: 60px 20px;
        text-align: center;
    }
    .header .eyebrow {
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: var(--gold-dark);
        margin-bottom: 12px;
    }
    .header h1 {
        font-family: 'Fraunces', serif;
        font-size: 2.5rem;
        margin-bottom: 12px;
    }
    .header p { opacity: 0.9; max-width: 600px; margin: 0 auto; }
    .header .breadcrumb { margin-bottom: 16px; opacity: 0.8; font-size: 0.9rem; }
    .header .breadcrumb a { color: var(--gold); text-decoration: none; }
    .header .breadcrumb a:hover { text-decoration: underline; }


    /* CTA Section (gradient style) */
    .cta-section {
        background: linear-gradient(135deg, var(--navy-medium) 0%, var(--navy-hover) 100%);
        color: white;
        padding: 48px;
        border-radius: 16px;
        text-align: center;
        margin: 40px 0;
    }
    .cta-section h2 { color: white; margin-bottom: 12px; font-family: 'Fraunces', serif; }
    .cta-section p { opacity: 0.9; margin-bottom: 24px; }
    .cta-btn {
        display: inline-block;
        background: var(--gold-dark);
        color: white;
        padding: 14px 32px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 600;
    }
    .cta-btn:hover { background: #c2660a; }


    /* FAQ Section */
    .faq-section {
        background: white;
        border-radius: 12px;
        padding: 32px;
        margin: 32px 0;
    }
    .faq-section h2 {
        font-family: 'Fraunces', serif;
        font-size: 1.5rem;
        color: var(--navy-medium);
        margin-bottom: 24px;
    }
    .faq-item {
        border-bottom: 1px solid var(--gray-200);
        padding: 20px 0;
    }
    .faq-item:last-child { border-bottom: none; }
    .faq-question {
        font-size: 1.05rem;
        font-weight: 600;
        color: var(--navy);
        margin-bottom: 12px;
    }
    .faq-answer {
        font-size: 0.95rem;
        color: var(--gray-600);
        line-height: 1.7;
        margin: 0;
    }


    /* Stat Cards */
    .stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
        margin: 30px 0;
    }
    .stat-card {
        background: white;
        border: 1px solid var(--gray-200);
        border-radius: 12px;
        padding: 24px;
        text-align: center;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }
    .stat-card .label { font-size: 0.85rem; color: var(--gray-500); margin-bottom: 8px; }
    .stat-card .value {
        font-family: 'Fraunces', serif;
        font-size: 2rem;
        font-weight: 600;
        color: var(--navy-medium);
        white-space: nowrap;
    }
    .stat-card .sublabel { font-size: 0.8rem; color: #94a3b8; margin-top: 4px; }
    .stat-value {
        font-family: 'Fraunces', serif;
        font-size: 1.75rem;
        font-weight: 700;
        color: var(--navy);
        white-space: nowrap;
    }
    .stat-label {
        font-size: 0.85rem;
        color: var(--gray-600);
        margin-top: 8px;
    }
    @media (max-width: 600px) {
        .stat-card .value { font-size: 1.5rem; }
        .stat-value { font-size: 1.3rem; }
    }

