/**
 * About the Founder — shared marketing page styles
 * Used by content/{brand}/about-the-founder.html
 */

.founder-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a2e 50%, #16213e 100%);
    color: #fff;
    padding-top: 80px;
}

.founder-page .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.founder-hero {
    text-align: center;
    padding: 48px 0 64px;
}

.founder-hero .eyebrow {
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 12px;
}

.founder-hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.15;
}

.founder-hero .founder-name {
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    font-weight: 600;
    color: #a5b4fc;
    margin-bottom: 20px;
}

.founder-hero .lead {
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    max-width: 720px;
    margin: 0 auto 32px;
}

.founder-hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.founder-section {
    padding: 48px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.founder-section h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.25;
}

.founder-section p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 16px;
}

.founder-section p:last-child {
    margin-bottom: 0;
}

.founder-quote {
    margin: 40px 0;
    padding: 32px 36px;
    background: rgba(102, 126, 234, 0.12);
    border-left: 4px solid #667eea;
    border-radius: 0 12px 12px 0;
}

.founder-quote blockquote {
    margin: 0;
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
}

.founder-timeline {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
}

.founder-timeline li {
    position: relative;
    padding: 0 0 28px 28px;
    border-left: 2px solid rgba(102, 126, 234, 0.4);
    margin-left: 8px;
}

.founder-timeline li:last-child {
    padding-bottom: 0;
    border-left-color: transparent;
}

.founder-timeline li::before {
    content: '';
    position: absolute;
    left: -7px;
    top: 6px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #667eea;
}

.founder-timeline strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 6px;
    color: #c7d2fe;
}

.founder-timeline span {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

.founder-principles {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}

.founder-principles li {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.88);
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.founder-principles li::before {
    content: '✓';
    color: #667eea;
    font-weight: 700;
    flex-shrink: 0;
}

.founder-mission {
    text-align: center;
    padding: 64px 0 80px;
}

.founder-mission h2 {
    font-size: 1.75rem;
    margin-bottom: 16px;
}

.founder-mission .mission-statement {
    font-size: 1.35rem;
    font-weight: 600;
    color: #a5b4fc;
    max-width: 640px;
    margin: 0 auto 32px;
    line-height: 1.5;
}

.founder-cta-section {
    text-align: center;
    padding: 48px 0 80px;
    background: rgba(0, 0, 0, 0.25);
}

.founder-cta-section h2 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.founder-cta-section p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 28px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 640px) {
    .founder-hero {
        padding: 32px 0 48px;
    }

    .founder-quote {
        padding: 24px 20px;
    }

    .founder-quote blockquote {
        font-size: 1.1rem;
    }
}
