/* Header */
.header {
    text-align: center;
    margin-bottom: 60px;
}

.main-title {
    font-size: 4em;
    font-weight: 900;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    letter-spacing: -2px;
}

.subtitle {
    font-size: 1.6em;
    color: #a0aec0;
    margin-bottom: 20px;
}

.tagline {
    font-size: 1.2em;
    color: #667eea;
    font-style: italic;
    margin-bottom: 40px;
}

/* Core Beliefs */
.core-beliefs {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
    border: 3px solid #667eea;
    border-radius: 20px;
    padding: 35px;
    margin-bottom: 50px;
}

.core-beliefs h3 {
    color: #667eea;
    font-size: 1.8em;
    margin-bottom: 20px;
    text-align: center;
}

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

.belief-item {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.belief-item strong {
    color: #667eea;
    display: block;
    margin-bottom: 8px;
}

/* System Overview */
.system-overview {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 60px;
    border: 2px solid rgba(102, 126, 234, 0.3);
}

.overview-title {
    text-align: center;
    font-size: 2em;
    color: #667eea;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.flow-chains {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.flow-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.flow-label {
    font-size: 1.1em;
    color: #a0aec0;
    min-width: 150px;
}

.flow-node-small {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 15px 25px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1em;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
}

.flow-connector {
    font-size: 2em;
    color: #667eea;
    font-weight: bold;
}
