:root {
    --primary: #003b5c;       /* Deep Professional Blue */
    --accent: #00a3e0;        /* Health Tech Blue */
    --accent-light: #e6f6fc;  /* Soft Blue Tint */
    --bg: #ffffff;
    --light-grey: #f8f9fa;
    --text: #1a1a1a;
    --text-muted: #4e5d6c;    /* Standardized typography color value */
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { 
    background: var(--bg); 
    color: var(--text); 
    font-family: 'Plus Jakarta Sans', sans-serif; 
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 40px; 
    width: 100%;
}

/* Navbar Container Structural Layout Fixes */
.navbar {
    padding: 15px 0;
    border-bottom: 1px solid #eef2f5;
    background: #fff;
    position: sticky;
    top: 0; 
    z-index: 100;
}
.nav-flex { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}

/* Flex Row Logo Layout optimized for tight alignment */
.logo { 
    display: flex;
    align-items: center;
    user-select: none;
    flex-shrink: 0;
}
.logo-main {
    font-weight: 800;
    font-size: 1.75rem;
    color: var(--primary);
    letter-spacing: -0.5px;
    line-height: 1.0;
}
.logo-divider {
    font-size: 1.5rem;
    color: var(--accent);     /* Custom light blue divider asset mapping */
    font-weight: 300;
    margin: 0 8px;            /* Tightened horizontal gap padding */
    line-height: 1.0;
    display: inline-block;
    transform: scaleY(0.85);  /* Balances vertical bar alignment precisely with text */
}
.logo-sub {
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--text-muted);
    line-height: 1.35;
    display: block;
    letter-spacing: 0.1px;
}

/* Nav Menu Items Engine */
.nav-links {
    display: flex;
    align-items: center;
}
.nav-links a { 
    text-decoration: none; 
    color: var(--text); 
    font-weight: 500; 
    margin-left: 30px; 
    font-size: 0.95rem; 
    transition: color 0.2s;
    white-space: nowrap;
}
.nav-links a:hover { color: var(--accent); }
.btn-cta { 
    background: var(--primary); 
    color: #fff !important; 
    padding: 10px 22px; 
    border-radius: 4px; 
    font-weight: 600; 
}
.btn-cta:hover { background: var(--accent); }

/* Structural Hero Framework Layout Configuration */
.hero {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: white;
}
.hero-image-container { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; }
.hero-image-container img { width: 100%; height: 100%; object-fit: cover; }
.overlay { 
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; 
    background: linear-gradient(to right, rgba(0, 59, 92, 0.95) 55%, rgba(0, 59, 92, 0.3) 100%); 
}
.hero-content { 
    max-width: 850px;
    padding: 0; 
}
.hero-content h1 { font-size: 3.5rem; line-height: 1.15; margin: 15px 0; font-weight: 800; letter-spacing: -0.5px; }
.hero-content p { font-size: 1.25rem; color: #e2f1f8; line-height: 1.5; max-width: 700px; }
.eyebrow { text-transform: uppercase; letter-spacing: 2px; font-size: 0.8rem; color: var(--accent); font-weight: 700; display: block; }
.serif-italic { font-family: 'Lora', serif; font-style: italic; font-weight: 400; color: #fff; }

/* Status Update Indicator Bar Styles */
.momentum-bar {
    background: #f0f4f8;
    padding: 35px 0;
    border-bottom: 1px solid #d1d9e0;
    text-align: center;
}
.momentum-stats {
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
    font-size: 1.15rem;
    letter-spacing: 0.5px;
}
.momentum-sub { font-size: 1rem; color: var(--text); font-weight: 500; margin-bottom: 8px; max-width: 900px; margin-left: auto; margin-right: auto; }
.momentum-funding { font-size: 0.95rem; color: var(--text-muted); }
.status-link { color: var(--accent); font-weight: 700; text-decoration: none; border-bottom: 1px dashed var(--accent); transition: color 0.2s; }
.status-link:hover { color: var(--primary); border-bottom-style: solid; }

/* Grid Sections Foundations & Color Consistency Controls */
.white-bg { background: #ffffff; }
.grey-bg { background: #f8fafc; }
.content-section { padding: 100px 0; }
.section-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.label { color: var(--accent); text-transform: uppercase; font-size: 0.8rem; margin-bottom: 12px; letter-spacing: 1px; font-weight: 700; }
h3 { font-size: 2.4rem; color: var(--primary); margin-bottom: 20px; font-weight: 800; line-height: 1.2; }

/* Harmonized Paragraph Weight System */
.rationale-p { 
    font-size: 1.05rem; 
    color: var(--text-muted); 
    font-weight: 400; 
    line-height: 1.65;
}
.priority-details { 
    display: flex; 
    flex-direction: column; 
    gap: 24px; 
    padding-top: 40px; 
}

.center-heading { text-align: center; max-width: 700px; margin: 0 auto 50px auto; }
.sub-heading { color: var(--text-muted); font-size: 1.1rem; margin-top: 8px; }

/* Platform Box Layout */
.mmrv-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.mmrv-card {
    background: #fff;
    padding: 35px 24px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.01);
    transition: transform 0.2s, box-shadow 0.2s;
}
.mmrv-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 20px rgba(0,59,92,0.04);
}
.mmrv-card h4 { font-size: 1.3rem; color: var(--primary); margin-bottom: 12px; font-weight: 800; border-bottom: 2px solid var(--accent-light); padding-bottom: 8px; }
.mmrv-card p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; }

/* Sub-feature List Framework Styles */
.feature-item { margin-bottom: 30px; padding-left: 20px; border-left: 4px solid var(--accent); }
.feature-item h4 { font-size: 1.15rem; color: var(--primary); margin-bottom: 4px; font-weight: 700; }
.feature-item p { color: var(--text-muted); font-size: 0.95rem; }

/* New Direct Contact UI Component */
.form-section { background: var(--light-grey); padding: 90px 0; border-top: 1px solid #e2e8f0; }
.form-card { background: #fff; padding: 50px; border-radius: 12px; box-shadow: 0 10px 25px rgba(0,0,0,0.02); max-width: 700px; margin: 0 auto; text-align: center; }
.form-card h2 { font-size: 2rem; color: var(--primary); margin-bottom: 12px; font-weight: 800; }
.form-card p { color: var(--text-muted); margin-bottom: 25px; }

.contact-directive-box {
    margin-top: 30px;
    padding: 25px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px dashed #cbd5e1;
}
.contact-directive-box p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 10px !important;
}
.contact-email-link {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    border-bottom: 2px solid var(--accent);
    transition: color 0.2s, border-color 0.2s;
}
.contact-email-link:hover {
    color: var(--accent);
    border-color: var(--primary);
}

footer { background: var(--primary); color: #fff; padding: 35px 0; font-size: 0.9rem; text-align: center; }

/* Responsive Media Viewport Layout Adaptations */
@media(max-width: 992px) {
    .container { padding: 0 24px; }
    .nav-flex { flex-direction: column; gap: 15px; text-align: center; }
    .nav-links { margin-top: 5px; }
    .nav-links a { margin: 0 15px; font-size: 0.9rem; }
    
    .section-grid { grid-template-columns: 1fr; gap: 30px; }
    .priority-details { padding-top: 0; }
    .mmrv-grid { grid-template-columns: 1fr 1fr; }

    .hero { height: auto; padding: 80px 0; }
    .overlay { background: rgba(0, 59, 92, 0.85); }
    .hero-content h1 { font-size: 2.4rem; }
    .hero-content br { display: none; }
    .hero-content p { font-size: 1.1rem; }
}

@media(max-width: 640px) {
    /* Responsive Logo adjustments preventing wrapping breaks */
    .logo-main { font-size: 1.4rem; }
    .logo-divider { font-size: 1.2rem; margin: 0 6px; }
    .logo-sub { font-size: 0.58rem; line-height: 1.3; }
    
    .nav-links a { margin: 0 8px; font-size: 0.85rem; }
    .btn-cta { padding: 8px 14px; }
}

@media(max-width: 576px) {
    .mmrv-grid { grid-template-columns: 1fr; }
    .form-card { padding: 35px 20px; }
    .contact-email-link { font-size: 1.1rem; }
    h3 { font-size: 1.8rem; }
}
