/* ===================================
   FOUNDER STORY (Magazine Profile Layout)
   =================================== */

.founder-story {
    background-color: #44337A;
    /* Episonic Purple-900 */
    padding: var(--spacing-3xl) 0;
    position: relative;
    overflow: hidden;
}

.founder-profile-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 300px 1fr;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    max-width: 1000px;
    margin: 0 auto;
}

/* Left Sidebar */
.profile-sidebar {
    background: rgba(0, 0, 0, 0.2);
    padding: var(--spacing-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.profile-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    margin-bottom: var(--spacing-lg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.profile-image-container:hover .profile-image {
    transform: scale(1.05);
}

.profile-badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(26, 31, 46, 0.9);
    backdrop-filter: blur(4px);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.profile-info h3 {
    font-size: 1.5rem;
    margin-bottom: 4px;
    color: white;
}

.profile-title {
    color: var(--accent-purple-light);
    font-weight: 600;
    margin-bottom: 4px;
}

.profile-show {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.profile-creds {
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}

.creds-label {
    font-size: 0.9rem;
    color: white;
    font-weight: 600;
    margin-bottom: 4px;
}

.creds-sublabel {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.creds-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.creds-list li {
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Right Content */
.profile-content {
    padding: var(--spacing-2xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-title {
    font-size: 2rem;
    margin-bottom: var(--spacing-lg);
    background: linear-gradient(to right, #fff, #a5a5a5);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.story-body {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.lead-paragraph {
    font-size: 1.15rem;
    margin-bottom: var(--spacing-lg);
}

/* Insight Box (The 18-Hour Problem) */
.insight-box {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: var(--spacing-lg);
    margin: var(--spacing-xl) 0;
}

.insight-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: var(--spacing-md);
}

.insight-header h4 {
    font-size: 1.1rem;
    color: white;
    margin: 0;
}

.mini-stats-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.mini-stat {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: var(--spacing-md);
    text-align: center;
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mini-stat.big-stat {
    background: rgba(139, 107, 232, 0.15);
    border-color: rgba(139, 107, 232, 0.4);
}

.mini-stat.highlight {
    background: rgba(139, 107, 232, 0.1);
    border-color: rgba(139, 107, 232, 0.3);
}

.stat-num {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 4px;
    line-height: 1;
}

.stat-desc {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.stat-sub {
    font-size: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.3;
}

.validation-box {
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid var(--accent-purple);
    padding: var(--spacing-lg);
    margin: var(--spacing-lg) 0;
    font-style: italic;
    color: rgba(255, 255, 255, 0.85);
}

.validation-box strong {
    color: white;
    font-style: normal;
}

.launch-features {
    margin: var(--spacing-xl) 0;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: var(--spacing-lg);
}

.launch-header {
    font-weight: 600;
    color: var(--accent-purple-light);
    margin-bottom: var(--spacing-md);
}

.feature-list-simple {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list-simple li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    font-size: 0.95rem;
}

.feature-list-simple li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-purple);
}

/* Footer Area */
.story-footer {
    margin-top: var(--spacing-xl);
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.launch-tag {
    background: rgba(139, 107, 232, 0.1);
    color: var(--accent-purple-light);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
}

.footer-subtext {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 900px) {
    .founder-profile-card {
        grid-template-columns: 1fr;
    }

    .profile-sidebar {
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: var(--spacing-lg);
        padding: var(--spacing-lg);
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .profile-image-container {
        width: 100px;
        margin-bottom: 0;
    }

    .profile-content {
        padding: var(--spacing-lg);
    }
}

@media (max-width: 600px) {
    .profile-sidebar {
        flex-direction: column;
        text-align: center;
    }

    .profile-image-container {
        width: 140px;
        margin-bottom: var(--spacing-md);
    }

    .mini-stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .story-footer {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
}