/* common.css */

/* Base styles for the entire site */
body {
    font-family: 'Inter', sans-serif;
    background-color: #003F5C; /* Dark Blue Background */
    /* Subtle dot grid for a blueprint feel */
    background-image: radial-gradient(rgba(204, 228, 238, 0.1) 1px, transparent 0);
    background-size: 20px 20px;
    color: #CCE4EE; /* Light Blue Text */
    line-height: 1.6;
}

/* Accent color for highlights */
.text-accent {
    color: #67e8f9; /* Cyan accent */
}

/* Styles for the sticky navigation header */
.header-bg {
    background-color: #002A3D; /* Match card backgrounds */
    border-bottom: 1px solid #365D80;
}

/* Common card style for pillars and sections */
.pillar-card {
    background-color: #002A3D; /* Slightly darker inner background */
    border: 2px solid #365D80;
    transition: transform 0.3s, box-shadow 0.3s;
}
.pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* Divider style */
.divider {
    height: 1px;
    background: linear-gradient(to right, transparent, #365D80, transparent);
}

/* Common heading styles */
.section-heading {
    color: #CCE4EE;
}

/* Gradient for main titles */
.title-gradient {
    background: linear-gradient(90deg, #cce4ee, #ffffff, #cce4ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2; /* Fix for clipped descenders */
}

/* === STYLES CONSOLIDATED FROM SUB-PAGES === */

/* From angels.html */
.chart-container {
    position: relative;
    width: 100%;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
    height: 300px;
    max-height: 450px;
}
@media (min-width: 768px) {
    .chart-container {
        height: 400px;
    }
}
.stat-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}
.flow-card {
    background-color: #365D80;
    border: 1px solid #668BA4;
    color: #CCE4EE;
}
.flow-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #668BA4;
    margin: 1rem 0;
}

/* From enclaves.html */
.text-primary-blue { color: #67e8f9; }
.border-primary-blue { border-color: #67e8f9; }
.shadow-primary-blue\/30 { box-shadow: 0 4px 14px 0 rgba(103, 232, 249, 0.2); }
.bg-layer-dark { background-color: #002A3D; }
.bg-layer-light { background-color: #003F5C; }
.pc-card-svg {
    background-color: #003F5C;
    border: 1px solid #365D80;
}

/* From hubs.html */
.section-title { color: #99B9C8; }
.timeline-item { position: relative; padding-left: 2rem; border-left: 2px solid #365D80; }
.timeline-item::before { content: ''; position: absolute; left: -8px; top: 0; width: 16px; height: 16px; background-color: #99B9C8; border-radius: 50%; border: 3px solid #002A3D; }
.container-card { background-color: #002A3D; border: 2px solid #365D80; }

/* From team.html */
.advisor-card, .partner-card { background-color: #002A3D; }

/* From tech.html */
.spear-gradient { background: linear-gradient(90deg, #94D2BD 0%, #0A9396 50%, #005F73 100%); }
.card { background-color: rgba(10, 147, 150, 0.1); border: 1px solid rgba(148, 210, 189, 0.2); backdrop-filter: blur(10px); }
