/*
CHANGE LOG
File: /static/css/iverify.css
Document Type: CSS Stylesheet
Purpose: Consolidated styling for the iVerify presentation.
HTML Template: iverify.html
Version History:
2025-08-08 v4.2 - Reduced all font sizes by 20% for better readability.
2025-08-08 v4.1 - FINAL CSS: Simplified hero styling to be part of the summary.
2025-08-08 v4.0 - Full-width, wider content, and larger fonts for a bold, confident presentation.
*/

/* --- Color Palette & Base Styles --- */
:root {
    --primary-purple: #4a2c6d;
    --secondary-gold: #c5a05b;
    --text-dark: #212529;
    --text-light: #6c757d;
    --background-light: #f8f9fa;
    --border-color: #dee2e6;
    --base-font-size: 16px; /* Reduced from 20px */
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--text-dark);
    font-size: var(--base-font-size);
    line-height: 1.7;
    background-color: #ffffff;
}

/* --- PRESENTATION LAYOUT: FULL WIDTH & CONFIDENT --- */
.iverify-container {
    display: flex;
}

.iverify-nav {
    width: 280px;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    background-color: var(--background-light);
    border-right: 1px solid var(--border-color);
    padding: 20px;
    overflow-y: auto;
    z-index: 100;
}

.iverify-content {
    margin-left: 280px;
    padding: 3rem 5%;
    width: calc(100% - 280px);
    max-width: 1400px;
}

/* --- TYPOGRAPHY: REDUCED BY 20% --- */
.iverify-content h2 {
    font-size: 2.24em; /* Reduced from 2.8em */
    font-weight: 700;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 0.5rem;
    margin-bottom: 2.5rem;
}
.content-block h3 {
    font-size: 1.6em; /* Reduced from 2em */
    font-weight: 600;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-purple);
}
.content-block h4 {
    font-size: 1.2em; /* Reduced from 1.5em */
    font-weight: 600;
}
.content-block p, .content-block ul {
    font-size: 0.92em; /* Reduced from 1.15em */
    max-width: 45em;
}

/* --- Summary Hero Block (Font sizes reduced) --- */
.summary-hero {
    text-align: center;
    margin-bottom: 2rem;
}
.summary-hero img {
    max-width: 100%;
    width: 800px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.hero-caption {
    margin-top: 2rem;
}
.hero-caption h3 {
    font-size: 1.92em; /* Reduced from 2.4em */
    margin: 0;
}
.hero-caption p {
    font-size: 1em; /* Reduced from 1.25em */
    margin: 1rem auto 0 auto;
    max-width: 850px;
}

/* --- NAVIGATION STYLES (Font sizes reduced) --- */
.iverify-nav .nav-header { margin-bottom: 20px; padding-bottom: 10px; border-bottom: 1px solid var(--border-color); }
.iverify-nav h4 { margin: 0; color: var(--primary-purple); font-size: 1.2em; } /* Reduced from 1.5em */
.iverify-nav p { margin: 0; font-size: 0.8em; color: var(--text-light); } /* Reduced from 1em */
.iverify-nav ul { list-style: none; padding: 0; margin: 0; }
.iverify-nav li a { display: block; padding: 12px 15px; text-decoration: none; color: var(--text-dark); border-radius: 4px; margin-bottom: 5px; font-size: 0.88em; transition: background-color 0.2s; } /* Reduced from 1.1em */
.iverify-nav li a:hover { background-color: #e9ecef; }
.iverify-nav li a.active { background-color: var(--primary-purple); color: white; font-weight: 600; }

/* --- CONTENT LAYOUT --- */
.iverify-content section { padding-top: 80px; margin-top: -80px; min-height: 80vh; border-bottom: 1px solid #eee; margin-bottom: 40px; }
.highlight-box { margin-top: 30px; padding: 25px; background-color: var(--background-light); border-left: 5px solid var(--secondary-gold); border-radius: 4px; }

/* --- PROCESS LIST (Font sizes reduced) --- */
.process-list { list-style: none; padding-left: 0; counter-reset: step-counter; }
.process-list li { counter-increment: step-counter; margin-bottom: 25px; padding-left: 60px; position: relative; }
.process-list li::before { content: counter(step-counter); position: absolute; left: 0; top: 0; width: 40px; height: 40px; color: white; background-color: var(--primary-purple); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; font-size: 0.88em;} /* Reduced from 1.1em */
.process-list li strong { display: block; font-size: 0.96em; margin-bottom: 5px; } /* Reduced from 1.2em */
.status-online { color: #28a745; font-weight: bold; font-size: 0.72em; } /* Reduced from 0.9em */
.status-offline { color: #6c757d; font-weight: bold; font-size: 0.72em; } /* Reduced from 0.9em */

/* --- GRID LAYOUTS --- */
.problem-grid { display: grid; grid-template-columns: 1fr; gap: 30px; margin-top: 30px; }
.problem-card { background-color: #f8f9fa; padding: 25px; border-radius: 8px; border-left: 5px solid #dc3545; }
.problem-card h4 { color: #721c24; }
.white-paper-link { background-color: #f8f9fa; border-color: #6c757d; }
.button-link { display: inline-block; margin-top: 15px; padding: 15px 30px; background-color: var(--primary-purple); color: white; text-decoration: none; font-weight: bold; border-radius: 5px; font-size: 0.88em; transition: background-color 0.2s; } /* Reduced from 1.1em */
.button-link:hover { opacity: 0.8; }
.solution-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 30px; }
.solution-card { background-color: #f8f9fa; padding: 25px; border-radius: 8px; border-left: 5px solid var(--primary-purple); }
.solution-card h4 { color: var(--primary-purple); }
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 30px; margin-top: 30px; margin-bottom: 30px; }
.feature-card { background-color: #f8f9fa; padding: 25px; border-radius: 8px; border-left: 5px solid var(--text-light); }
.opportunity-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 30px; margin-top: 30px; }
.opportunity-card { background-color: #f8f9fa; padding: 25px; border-radius: 8px; border-left: 5px solid #28a745; }
.opportunity-card h4 { color: #155724; }
.revenue-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 30px; margin-bottom: 30px; }
.revenue-card { background-color: #f8f9fa; padding: 25px; border-radius: 8px; border-left: 5px solid var(--secondary-gold); }
.revenue-card h5 { margin-top: 0; color: var(--secondary-gold); }
.founder-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 30px; }
.founder-card { background-color: #f8f9fa; padding: 25px; border-radius: 8px; }
.founder-card h5 { margin-top: 0; }
.objective-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; margin-top: 30px; margin-bottom: 30px; }
.objective-card { background-color: #f8f9fa; padding: 25px; border-radius: 8px; }
.objective-card h5 { margin-top: 0; }
.cta-box { margin-top: 40px; padding: 30px; border-radius: 8px; text-align: center; background-color: #e9e5ee; border: 2px solid var(--primary-purple); }
.cta-box h4 { margin-top: 0; color: var(--primary-purple); }
.chart-container { margin: 30px 0; text-align: center; }

/* --- REPORT LINK STYLES (Font sizes reduced) --- */
.report-link { display: block; margin-top: 20px; text-decoration: none; color: inherit; border: 1px solid #ddd; border-radius: 8px; overflow: hidden; transition: box-shadow 0.2s; }
.report-link:hover { box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.report-screenshot { max-width: 100%; display: block; }
.report-caption { display: block; padding: 10px; background-color: #f8f9fa; text-align: center; font-size: 0.72em; font-weight: bold; color: var(--primary-purple); } /* Reduced from 0.9em */


/* Technical navigation styling - separate from existing classes */
.tech-nav-header {
    color: var(--secondary-gold) !important;
    font-weight: bold !important;
    font-size: 0.8em !important;
    text-transform: uppercase;
    margin-top: 1rem !important;
    padding: 8px 15px !important;
}
