:root { 
    --bg-color: #0a0f1d; 
    --card-bg: #131a30; 
    --text-color: #f1f5f9; 
    --text-muted: #94a3b8; 
    --accent-color: #3b82f6; 
    --success-color: #10b981; 
    --warning-color: #f59e0b;
    --border: rgba(255, 255, 255, 0.05); 
} 

* { 
    box-sizing: border-box; 
} 

body { 
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; 
    background-color: var(--bg-color); 
    color: var(--text-color); 
    margin: 0; 
    padding: 0; 
    line-height: 1.6; 
} 

/* Header Adjustments & Fixed Navigation Flexbox */ 
nav { 
    display: flex; 
    flex-direction: row; 
    justify-content: space-between; 
    align-items: center; 
    padding: 24px 40px; 
    border-bottom: 1px solid var(--border); 
    max-width: 1200px; 
    margin: 0 auto; 
    gap: 20px; 
} 

.branding-header { 
    display: flex; 
    align-items: center; 
} 

/* Optimized to render your new text-logo cleanly without clipping */
.branding-header img { 
    height: 32px; 
    width: auto; 
    border-radius: 0; 
    box-shadow: none; 
    border: none; 
    margin-bottom: 0; 
} 

.nav-links { 
    display: flex; 
    gap: 25px; 
    align-items: center;
} 

.nav-links a { 
    color: var(--text-muted); 
    text-decoration: none; 
    font-size: 14px; 
    transition: color 0.2s; 
} 

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

/* Navigation CTA Highlight Variant */
.nav-cta-btn {
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--success-color) !important;
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
}

.nav-cta-btn:hover {
    background-color: rgba(16, 185, 129, 0.2);
}

/* System Status Badge Layer */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-family: monospace;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.status-badge--plain {
    font-family: inherit;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: none;
}

.hero-today-line {
    margin: 0 0 16px;
    font-size: 17px;
    line-height: 1.55;
    color: var(--text-color);
    font-weight: 500;
    max-width: 36em;
}

.pulse-dot {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 0.4; }
    50% { opacity: 1; }
    100% { opacity: 0.4; }
}

/* Main Section Elements styling */ 
.hero { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 80px 40px; 
    display: flex; 
    align-items: center; 
    gap: 50px; 
} 

.hero-content { 
    flex: 1.1; 
} 

.hero-visual { 
    flex: 0.9; 
    display: flex; 
    justify-content: center; 
} 

.hero h1 { 
    font-size: 48px; 
    font-weight: 800; 
    line-height: 1.1; 
    margin: 0 0 20px 0; 
    letter-spacing: -1px; 
} 

.hero p { 
    color: var(--text-muted); 
    font-size: 18px; 
    margin: 0 0 30px 0; 
} 

.hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
}

.hero-path-note {
    flex: 1 1 100%;
    margin: 4px 0 0;
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.55;
}

.btn-veteran {
    background: rgba(99, 102, 241, 0.15);
    color: #c7d2fe;
    border: 1px solid rgba(99, 102, 241, 0.35);
}

.btn-veteran:hover {
    background: rgba(99, 102, 241, 0.25);
    transform: translateY(-1px);
}

.veteran-preview-section {
    padding: 48px 40px 64px;
    border-top: 1px solid var(--border);
    background: rgba(99, 102, 241, 0.04);
}

.veteran-preview-layout {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    gap: 32px;
    align-items: center;
}

@media (min-width: 900px) {
    .veteran-preview-layout {
        grid-template-columns: 1fr 1fr;
    }
}

.veteran-week-preview {
    background: var(--card-bg);
    border: 1px solid rgba(99, 102, 241, 0.28);
    border-radius: 12px;
    padding: 18px;
}

.veteran-week-preview .dashboard-preview-header {
    color: #c7d2fe;
}

.veteran-week-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: 12px;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
}

.veteran-week-row:last-child {
    border-bottom: none;
}

.veteran-week-row span:first-child {
    color: var(--text-muted);
    font-family: monospace;
    min-width: 36px;
}

.veteran-week-row.rest span:last-child {
    color: var(--text-muted);
    font-style: italic;
}

.choose-path-section {
    padding: 56px 40px 64px;
    border-top: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.02);
}

.choose-path-grid {
    max-width: 1100px;
    margin: 24px auto 0;
    display: grid;
    gap: 20px;
}

@media (min-width: 900px) {
    .choose-path-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.choose-path-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.choose-path-card.guided {
    border-color: rgba(16, 185, 129, 0.28);
}

.choose-path-card.own-plan {
    border-color: rgba(99, 102, 241, 0.28);
}

.choose-path-badge {
    display: inline-block;
    font-family: monospace;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 999px;
    width: fit-content;
}

.choose-path-badge.guided {
    background: rgba(16, 185, 129, 0.12);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.25);
}

.choose-path-card h3 {
    margin: 0;
    font-size: 20px;
}

.choose-path-card p {
    margin: 0;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.choose-path-card ul {
    margin: 0;
    padding-left: 18px;
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.6;
}

.choose-path-card ul li + li {
    margin-top: 6px;
}

.choose-path-card .btn {
    margin-top: auto;
    align-self: flex-start;
}

.choose-path-footnote {
    max-width: 1100px;
    margin: 18px auto 0;
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

.choose-path-footnote a {
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: none;
}

.hero-preview-dual,
.hero-preview-triple {
    display: grid;
    gap: 12px;
}

.hero-preview-triple .hero-preview-pane {
    padding: 10px 12px;
}

.hero-preview-triple .dashboard-preview-row {
    margin-bottom: 8px;
    font-size: 10px;
}

.hero-preview-pane--manual {
    border-color: rgba(16, 185, 129, 0.25);
    background: rgba(16, 185, 129, 0.06);
}

.hero-preview-pane {
    background: rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 12px 14px;
}

.hero-preview-pane strong {
    display: block;
    font-size: 11px;
    margin-bottom: 8px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* Interactive Interface Actions buttons styling */ 
.btn { 
    display: inline-block; 
    padding: 14px 28px; 
    border-radius: 6px; 
    font-size: 15px; 
    font-weight: 600; 
    text-decoration: none; 
    cursor: pointer; 
    transition: transform 0.2s, background 0.2s; 
    white-space: nowrap;
} 

.btn-primary { 
    background-color: var(--success-color); 
    color: #022c22; 
    border: none; 
} 

.btn-primary:hover { 
    background-color: #059669; 
    transform: translateY(-1px); 
} 

.btn-secondary { 
    background-color: transparent; 
    color: var(--text-color); 
    border: 1px solid var(--border); 
} 

.btn-secondary:hover { 
    background-color: rgba(255,255,255,0.02); 
} 

/* Science Conversion Section Layout (The 5.4-Minute Hook) */
.science-section {
    background-color: #0b132b;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 80px 40px;
}

.science-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px;
}

.science-footnotes {
    flex-basis: 100%;
    margin: 0;
    padding: 24px 0 0;
    border-top: 1px solid var(--border);
    list-style: none;
    font-size: 11px;
    line-height: 1.6;
    color: var(--text-muted);
}

.science-footnotes li {
    margin: 0;
}

.science-footnotes .footnote-label {
    font-weight: 700;
    margin-right: 4px;
}

.science-footnotes a {
    color: var(--accent-color);
    text-decoration: none;
}

.science-footnotes a:hover {
    text-decoration: underline;
}

.cite-mark {
    font-size: 0.65em;
    line-height: 0;
    vertical-align: super;
    font-weight: 700;
}

.cite-mark a {
    color: var(--accent-color);
    text-decoration: none;
}

.cite-mark a:hover {
    text-decoration: underline;
}

.science-text {
    flex: 1;
}

.science-text h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 15px 0;
    letter-spacing: -0.5px;
}

.science-text p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 15px 0;
}

.science-chart-mockup {
    flex: 1;
    background-color: var(--bg-color);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 30px;
    font-family: monospace;
}

.chart-title {
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.chart-row {
    margin-bottom: 20px;
}

.chart-row:last-child {
    margin-bottom: 0;
}

.chart-label {
    font-size: 12px;
    color: var(--text-color);
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
}

.chart-label span {
    font-weight: 700;
}

.chart-bar-bg {
    background-color: var(--card-bg);
    height: 12px;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.chart-bar-fill {
    height: 100%;
    border-radius: 3px;
}

.fill-amber { background-color: var(--warning-color); }
.fill-emerald { background-color: var(--success-color); }

/* Product-first landing sections */
.platform-stats-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px 48px;
}

.platform-stats-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 22px;
}

.platform-stats-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.platform-stat-item,
.platform-stat-placeholder {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 14px;
}

.platform-stat-item strong,
.platform-stat-placeholder strong {
    display: block;
    font-size: 11px;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 6px;
}

.platform-stat-item span,
.platform-stat-placeholder span {
    font-size: 18px;
    font-weight: 700;
}

.platform-stat-item p,
.platform-stat-placeholder p {
    margin: 8px 0 0;
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
}

.platform-stat-placeholder p a {
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: none;
}

.platform-stats-note {
    margin: 14px 0 0;
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.55;
}

.system-section,
.testimonials-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 64px 40px;
}

.system-grid,
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.system-card,
.testimonial-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
}

.system-card h3,
.testimonial-card blockquote {
    margin: 0 0 12px;
    font-size: 16px;
    line-height: 1.45;
}

.system-card p,
.testimonial-card cite {
    margin: 0;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

.system-card .system-tag {
    display: inline-block;
    font-family: monospace;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.testimonial-card blockquote {
    font-style: normal;
    color: var(--text-color);
    font-size: 15px;
}

.testimonial-card cite {
    display: block;
    margin-top: 14px;
    font-size: 12px;
    font-style: normal;
}

.testimonial-disclaimer {
    margin: 20px 0 0;
    font-size: 11px;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.5;
}

.hero-checklist {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
}

.hero-checklist li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.5;
}

.hero-checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.dashboard-preview {
    width: 100%;
    max-width: 450px;
    background-color: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 22px;
    font-family: monospace;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.dashboard-preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    font-size: 11px;
}

.dashboard-preview-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 11px;
}

.dashboard-preview-row span:last-child {
    color: var(--success-color);
    font-weight: 700;
}

.dashboard-preview-bar {
    height: 8px;
    background: #0e1424;
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    margin-top: 16px;
}

.dashboard-preview-bar-fill {
    height: 100%;
    width: 62%;
    background: linear-gradient(90deg, var(--accent-color), var(--success-color));
}

.dashboard-preview-caption {
    margin-top: 10px;
    font-size: 10px;
    color: var(--text-muted);
    line-height: 1.5;
}

.science-section-lead {
    flex-basis: 100%;
    margin: 0 0 -20px;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Visual layout mockups element styling */ 
.mockup-container { 
    background-color: var(--card-bg); 
    border: 1px solid var(--border); 
    border-radius: 12px; 
    width: 100%; 
    max-width: 450px; 
    padding: 30px; 
    box-shadow: 0 20px 40px rgba(0,0,0,0.5); 
} 

.mockup-line { 
    height: 10px; 
    background-color: #1e293b; 
    border-radius: 4px; 
    margin-bottom: 12px; 
} 

/* Feature Information layout formatting blocks */ 
.features-section { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 100px 40px; 
} 

.section-title { 
    text-align: center; 
    margin-bottom: 60px; 
} 

.section-title h2 { 
    font-size: 32px; 
    font-weight: 700; 
    margin: 0 0 10px 0; 
} 

.section-title p { 
    color: var(--text-muted); 
    margin: 0; 
} 

.grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 30px; 
} 

.feature-card { 
    background-color: var(--card-bg); 
    border: 1px solid var(--border); 
    border-radius: 12px; 
    padding: 30px; 
} 

.feature-card h3 { 
    margin: 0 0 12px 0; 
    font-size: 20px; 
    color: var(--accent-color); 
} 

.feature-card p { 
    margin: 0; 
    color: var(--text-muted); 
    font-size: 14px; 
    line-height: 1.6; 
} 

/* Compliance Footer components formatting */ 
footer { 
    border-top: 1px solid var(--border); 
    padding: 60px 40px; 
    max-width: 1200px; 
    margin: 0 auto; 
} 

.footer-grid { 
    display: grid; 
    grid-template-columns: 2fr 1fr; 
    gap: 40px; 
    margin-bottom: 40px; 
} 

.footer-info p { 
    color: var(--text-muted); 
    font-size: 13px; 
    max-width: 800px; 
    line-height: 1.7; 
} 

.footer-links h4 { 
    font-size: 12px; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    color: var(--accent-color); 
    margin: 0 0 15px 0; 
} 

.footer-links ul { 
    list-style: none; 
    padding: 0; 
    margin: 0; 
    display: flex; 
    flex-direction: column; 
    gap: 10px; 
} 

.footer-links a { 
    color: var(--text-muted); 
    text-decoration: none; 
    font-size: 14px; 
    transition: color 0.2s; 
} 

.footer-links a:hover { 
    color: var(--text-color); 
} 

.footer-bottom { 
    border-top: 1px solid rgba(255, 255, 255, 0.02); 
    padding-top: 30px; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    font-size: 12px; 
    color: var(--text-muted); 
} 

/* Responsiveness media breakpoints query framework */ 
@media (max-width: 768px) { 
    nav { 
        flex-direction: column;
        padding: 20px; 
    } 
    .nav-links { 
        flex-direction: column; 
        gap: 15px; 
        width: 100%;
        text-align: center;
    } 
    .nav-cta-btn {
        display: block;
        width: 100%;
    }
    .hero { 
        flex-direction: column; 
        text-align: center; 
        padding: 40px 20px; 
    } 
    .hero-actions {
        flex-direction: column;
        gap: 10px;
    }
    .hero h1 { 
        font-size: 36px; 
    } 
    .btn {
        display: block;
        width: 100%;
    }
    .science-container {
        flex-direction: column;
        gap: 40px;
    }
    .system-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    .system-section,
    .testimonials-section {
        padding: 48px 20px;
    }
    .platform-stats-section {
        padding: 0 20px 40px;
    }
    .footer-grid { 
        grid-template-columns: 1fr; 
        gap: 30px; 
    } 
    .footer-bottom { 
        flex-direction: column; 
        gap: 15px; 
        text-align: center; 
    } 
}