@charset "UTF-8";

/* --- 1. Color Palette (Centralized) --- */
:root {
    --sage-light: #f9fbf9;
    --conservation-green: #2d5a27;
    --resilience-gold: #AD8F31;
    --slate-dark: #1a2a38;
    --text-main: #333333;
    --text-muted: #666666;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.12);
    --mint-pale: #C6EDDC;
}

/* --- 2. Global Styles & Reset --- */
* { box-sizing: border-box; }

body {
    background-color: var(--sage-light);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

.section-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* --- 3. Typography --- */
h1, h2, h3, h4 { color: var(--text-main); margin-bottom: 0.5rem; }
h1 { font-size: 2.8rem; }
h2.section-title { font-size: 2.2rem; text-align: center; margin-bottom: 10px; }

.main-title { font-size: 2.5rem; text-transform: uppercase; letter-spacing: 2px; }
.subtitle { font-size: 1.5rem; color: var(--resilience-gold); font-weight: 300; margin-bottom: 50px; letter-spacing: 1px; }

.lead-text { 
    font-size: 1.4rem; 
    line-height: 1.6; 
    border-left: 4px solid var(--resilience-gold); 
    padding-left: 40px; 
    padding-right: 40px; 
    color: var(--slate-dark);
    margin-bottom: 30px; 
}


.body-copy { font-size: 1.15rem; line-height: 1.7;    padding-left: 140px;  margin-bottom: 30px; }
.section-gold-title, .node-title-gold { color: var(--resilience-gold); text-transform: uppercase; }

/* --- 4. Buttons --- */
.cta-button, .cta-button-gold {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    transition: 0.3s ease;
    text-align: center;
    border: 2px solid var(--resilience-gold);
}

.cta-button.primary, .cta-button-gold {
    background-color: var(--resilience-gold);
    color: var(--slate-dark);
}

.cta-button:hover, .cta-button-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    background-color: #c4a02e;
}

/* --- 5. Grids & Cards (Lexicon, Fabric, Findings) --- */
.lexicon-grid, .findings-grid, .fabric-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.lexicon-entry, .fabric-card, .finding-box {
    padding: 30px;
    background: var(--white);
    border-left: 4px solid var(--conservation-green);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.lexicon-entry:hover, .fabric-card:hover { transform: translateY(-5px); background: #f8faf9; }
.lexicon-entry.highlight-gold { border-left-color: var(--resilience-gold); background: #fffef0; }

.lexicon-term { font-weight: 800; color: var(--conservation-green); text-transform: uppercase; margin-bottom: 15px; }
.fabric-icon, .node-icon { font-size: 4rem; margin-bottom: 20px; text-align: center; }

/* --- 6. Specialized Layout Sections --- */
.integration-framework, .network-vision-enhanced {
    background-color: var(--mint-pale);
    padding: 100px 10%;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.framework-header  {
    background-color: var(--mint-pale);
    padding: 100px 10%;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lexicon-section, .community-fabric { padding: 80px 0; background-color: var(--white); }
.ecosystem-growth { background-color: var(--slate-dark); color: var(--white); padding: 80px 20px; text-align: center; }

.hubmint-way-box {
    margin-top: 20px;
    padding: 15px;
    background-color: #f0f4f2;
    border: 1px dashed var(--resilience-gold);
    border-radius: 8px;
    font-size: 0.95rem;
}

/* --- 7. Diagrams & Images --- */
.diagram-wrapper { display: flex; justify-content: center; margin: 50px 0; }
.federated-diagram { width: 70%; max-width: 900px; text-align: center; }
.federated-diagram img, .disruption-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* --- 8. Responsive Fixes --- */
@media (max-width: 768px) {
    .federated-diagram { width: 90%; }
    .disruption-row { grid-template-columns: 1fr; gap: 30px; }
    .node-container { flex-direction: column; }
    h1 { font-size: 2.2rem; }
}

/* --- 9. Staggered Disruption Rows --- */
.staggered-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.disruption-row {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 120px;
}

/* This creates the zig-zag effect */
.disruption-row.reverse {
    flex-direction: row-reverse;
}

.disruption-text {
    flex: 1;
}

.disruption-image {
    flex: 1;
}

.disruption-image img, 
.matrix-video {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.front-number {
    display: block;
    font-family: 'Courier New', monospace;
    font-size: 2rem;
    color: var(--resilience-gold);
    font-weight: bold;
    margin-bottom: 10px;
}

/* Matrix Video Meta-Styles */
.matrix-video-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.unmute-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    padding: 10px 20px;
    background-color: var(--resilience-gold);
    color: var(--slate-dark);
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
}

.video-caption-box {
    margin-top: 20px;
    font-size: 0.95rem;
    color: var(--text-muted);
    font-style: italic;
}

/* Mobile Responsiveness for Staggered Rows */
@media (max-width: 768px) {
    .disruption-row, 
    .disruption-row.reverse {
        flex-direction: column; /* Stack vertically on phones */
        gap: 30px;
        margin-bottom: 60px;
        text-align: center;
    }
}

/* --- 9. Network Vision (The Power of the Network) --- */

.network-vision-enhanced {
    background-color: var(--mint-pale); /* Match the light green background */
    padding: 100px 20px;
    text-align: center;
}

.vision-header {
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.node-container {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap; /* Ensures responsiveness on mobile */
    align-items: stretch; /* Keeps all cards the same height */
}

.node-item {
    background-color: rgba(255, 255, 255, 0.4); /* Transparent glass effect from image */
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 40px 30px;
    border-radius: 20px;
    flex: 1;
    min-width: 300px;
    max-width: 850px;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Featured Center Card Styling */
.node-item.featured {
    background-color: var(--slate-dark); /* Dark blue/slate background */
    color: var(--white); /* White text for contrast */
    transform: scale(1.05); /* Slightly larger than others as seen in image */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.node-item.featured h4 {
    color: var(--resilience-gold) !important; /* Gold title for featured card */
}

.node-item h4 {
    margin-top: 20px;
    font-size: 1.4rem;
    text-transform: none; /* Keep natural casing as per image */
}

.node-icon {
    font-size: 4.5rem;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.5));
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .node-item.featured {
        transform: scale(1); /* Remove scale on mobile for better stacking */
    }
    .node-container {
        flex-direction: column;
        align-items: center;
    }
}
/* --- 10. Catalyst CTA (Footer Section) --- */
.catalyst-cta {
    background-color: var(--slate-dark); /* Dark background from image */
    padding: 100px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.centered-content {
    max-width: 900px;
    width: 100%;
}

/* Override lead-text-light for centering and removing border */
.lead-text-light { 
    font-size: 1.4rem; 
    line-height: 1.6; 
    border-left: none; /* Remove the side border for this footer */
    padding: 0 20px;
    color: var(--resilience-gold);
    margin: 0 auto 50px auto;
    text-align: center;
    max-width: 800px;
}

/* White Card Styling */
.contact-card-centered {
    background: var(--white);
    padding: 60px 40px;
    border-radius: 15px;
    border-top: 8px solid var(--resilience-gold); /* Gold top bar from image */
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 850px;
    margin: 0 auto;
}

.logo-wrapper img {
    max-width: 250px; /* Adjust size to match your logo */
    height: auto;
    margin-bottom: 30px;
}

.card-cta h3 {
    color: var(--text-main);
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.card-cta p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

/* Custom Button Styling for the Footer */
.cta-button-gold {
    background-color: #d4af37; /* Specific gold from image */
    color: var(--white) !important;
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 800;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s ease;
    border: none;
}

.cta-button-gold:hover {
    background-color: #c4a02e;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* --- Governance Model Centering --- */
.governance-model {
    background-color: var(--mint-pale);
    padding: 80px 20px;
    display: flex;
    justify-content: center; /* Centers the content box horizontally */
    align-items: center;     /* Centers the content box vertically if height is set */
    text-align: center;      /* Centers all text, headings, and buttons inside */
}

.governance-content {
    max-width: 700px;        /* Limits width for better readability */
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;     /* Ensures the button stays centered under the text */
}

.governance-content h3 {
    margin-bottom: 20px;
}

.governance-content p {
    margin-bottom: 30px;
    font-size: 1.2rem;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .lead-text-light {
        font-size: 1.2rem;
    }
    .contact-card-centered {
        padding: 40px 20px;
    }
}