/* MCP Platform Styles */

/* Base Styles */
:root {
    --primary-color: #3498db;
    --secondary-color: #2ecc71;
    --accent-color: #e74c3c;
    --dark-color: #2c3e50;
    --light-color: #ecf0f1;
    --text-color: #333333;
    --background-color: #ffffff;
    --border-color: #dddddd;
    --success-color: #27ae60;
    --warning-color: #f39c12;
    --error-color: #c0392b;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--dark-color);
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    line-height: 1.3;
    color: var(--dark-color);
}

p {
    margin-bottom: 1rem;
}

ul, ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

img {
    max-width: 100%;
    height: auto;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn.primary {
    background-color: var(--primary-color);
    color: white;
}

.btn.primary:hover {
    background-color: #2980b9;
}

.btn.secondary {
    background-color: var(--secondary-color);
    color: white;
}

.btn.secondary:hover {
    background-color: #27ae60;
}

/* Header Styles */
.site-header {
    background-color: white;
    box-shadow: var(--box-shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo h1 {
    font-size: 2rem;
    margin: 0;
    color: var(--primary-color);
}

.logo p {
    margin: 0 0 0 10px;
    font-size: 1rem;
    color: var(--dark-color);
}

.main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav li {
    margin-left: 30px;
}

.main-nav a {
    color: var(--dark-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.main-nav a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    padding: 150px 0 100px;
    background: linear-gradient(135deg, #3498db, #2ecc71);
    color: white;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    color: white;
}

.hero h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Framework Section */
.framework {
    background-color: var(--light-color);
}

.framework-intro {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
}

.intro-text {
    flex: 1;
    padding-right: 40px;
}

.intro-visual {
    flex: 1;
}

.visualization-container {
    width: 100%;
    height: 400px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #999;
}

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

.feature {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    text-align: center;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: rgba(52, 152, 219, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Levels Section */
.levels-visualization {
    margin-bottom: 50px;
}

.levels-tabs {
    max-width: 900px;
    margin: 0 auto;
}

.tabs-nav {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.tab-button {
    padding: 10px 20px;
    background-color: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    font-size: 1.1rem;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: var(--transition);
}

.tab-button.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.tab-pane {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.key-components {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.component {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

/* Markets Section */
.markets {
    background-color: var(--light-color);
}

.markets-visualization {
    margin-bottom: 50px;
}

.markets-comparison {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
}

.market-column {
    flex: 1;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

.market-column.unhappy {
    background-color: rgba(231, 76, 60, 0.1);
}

.market-column.happy {
    background-color: rgba(46, 204, 113, 0.1);
}

.market-feature {
    margin-bottom: 20px;
}

.transformation {
    text-align: center;
    padding: 30px;
    background-color: white;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

/* Engage Section */
.engagement-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.engagement-option {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    text-align: center;
}

.option-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: rgba(52, 152, 219, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-discussions {
    margin-bottom: 50px;
}

.discussion-item {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    margin-bottom: 20px;
}

.discussion-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #666;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.tag {
    background-color: rgba(52, 152, 219, 0.1);
    color: var(--primary-color);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
}

.engagement-cta {
    text-align: center;
}

/* Invest Section */
.invest {
    background-color: var(--light-color);
}

.investment-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.investment-option {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    text-align: center;
}

.featured-initiatives {
    margin-bottom: 50px;
}

.initiative-card {
    display: flex;
    background-color: white;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    margin-bottom: 20px;
    overflow: hidden;
}

.initiative-image {
    width: 200px;
    background-color: #f5f5f5;
}

.initiative-image-placeholder {
    width: 100%;
    height: 100%;
    background-color: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
}

.initiative-content {
    flex: 1;
    padding: 20px;
}

.initiative-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.initiative-stage {
    background-color: rgba(46, 204, 113, 0.1);
    color: var(--secondary-color);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
}

.initiative-metrics {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.metric {
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.metric-label {
    font-size: 0.9rem;
    color: #666;
}

.initiative-actions {
    width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: #f9f9f9;
}

.investment-guide {
    text-align: center;
    padding: 30px;
    background-color: white;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
}

.investment-cta {
    text-align: center;
}

/* About Section */
.about-content {
    display: flex;
    gap: 50px;
}

.about-text {
    flex: 2;
}

.team {
    flex: 1;
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

.team-cta {
    margin-top: 20px;
    text-align: center;
}

/* Footer */
.site-footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-logo h2 {
    font-size: 2rem;
    margin: 0;
    color: white;
}

.footer-logo p {
    margin: 5px 0 0;
    color: rgba(255, 255, 255, 0.7);
}

.footer-nav {
    display: flex;
    gap: 50px;
}

.footer-nav-column h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.footer-nav-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-column li {
    margin-bottom: 10px;
}

.footer-nav-column a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-nav-column a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .framework-intro {
        flex-direction: column;
    }
    
    .intro-text {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .markets-comparison {
        flex-direction: column;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .initiative-card {
        flex-direction: column;
    }
    
    .initiative-image {
        width: 100%;
        height: 200px;
    }
    
    .initiative-actions {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .site-header .container {
        flex-direction: column;
    }
    
    .main-nav {
        margin-top: 15px;
    }
    
    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .main-nav li {
        margin: 5px 10px;
    }
    
    .hero {
        padding: 180px 0 80px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero h2 {
        font-size: 1.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 30px;
    }
}

/* Specific Component Styles */
.agent-icon, .information-icon, .human-icon, .network-icon,
.forum-icon, .collaboration-icon, .experts-icon, .events-icon,
.financial-icon, .expertise-icon, .resources-icon {
    /* Placeholder for actual icons */
    background-color: rgba(52, 152, 219, 0.2);
    position: relative;
}

.agent-icon::after {
    content: "👤";
    font-size: 2rem;
    position: absolute;
}

.information-icon::after {
    content: "📊";
    font-size: 2rem;
    position: absolute;
}

.human-icon::after {
    content: "🧠";
    font-size: 2rem;
    position: absolute;
}

.network-icon::after {
    content: "🔄";
    font-size: 2rem;
    position: absolute;
}

.forum-icon::after {
    content: "💬";
    font-size: 2rem;
    position: absolute;
}

.collaboration-icon::after {
    content: "🤝";
    font-size: 2rem;
    position: absolute;
}

.experts-icon::after {
    content: "👩‍🔬";
    font-size: 2rem;
    position: absolute;
}

.events-icon::after {
    content: "📅";
    font-size: 2rem;
    position: absolute;
}

.financial-icon::after {
    content: "💰";
    font-size: 2rem;
    position: absolute;
}

.expertise-icon::after {
    content: "🧩";
    font-size: 2rem;
    position: absolute;
}

.resources-icon::after {
    content: "🔧";
    font-size: 2rem;
    position: absolute;
}
