.founder-section {
    padding: 3.5rem 2rem;
    background: #ffffff;
    --founder-ease: cubic-bezier(0.34, 1, 0.68, 1);
}

.founder-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.founder-section.founder-ready .section-header > * {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    filter: blur(6px);
}

.founder-section.founder-animate .section-header > * {
    animation: founderHeaderReveal 0.9s var(--founder-ease) forwards;
}

.founder-section.founder-animate .section-header > *:nth-child(2) { animation-delay: 0.12s; }
.founder-section.founder-animate .section-header > *:nth-child(3) { animation-delay: 0.24s; }

@keyframes founderHeaderReveal {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
        filter: blur(6px);
    }
    60% {
        transform: translateY(-6px) scale(1.01);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

.founder-tagline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0.5rem 1.75rem;
    border: 1.5px solid var(--yellow, #ffd700);
    border-radius: 999px;
    color: #1a2340;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-bottom: 1.25rem;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -1px;
    color: #1a2340;
}

.founder-subheadline {
    font-size: 1.15rem;
    color: #4c5a70;
    margin-bottom: 0.85rem;
    letter-spacing: -0.3px;
}

.founder-meta {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #5b8cc9;
    font-weight: 700;
}

/* 2-Column Layout */
.founder-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: center;
}

/* Founder Image */
.founder-image {
    position: relative;
    border-radius: 1.75rem;
    overflow: hidden;
    box-shadow: 0 18px 38px rgba(17, 23, 52, 0.25);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.founder-section.founder-ready .founder-image {
    opacity: 0;
    transform: translateX(-60px) scale(0.9);
}

.founder-section.founder-animate .founder-image {
    animation: founderImageSlide 1s var(--founder-ease) 0.08s forwards;
}

@keyframes founderImageSlide {
    0% {
        opacity: 0;
        transform: translateX(-60px) scale(0.9);
        filter: blur(4px);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
        filter: blur(0);
    }
}

.founder-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.founder-image:hover img {
    transform: scale(1.05);
}

.founder-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(26, 35, 64, 0.3) 100%);
    pointer-events: none;
    transition: background 0.35s ease;
}

.founder-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(17, 23, 52, 0), rgba(91, 140, 201, 0.3));
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.founder-image:hover {
    box-shadow: 0 25px 45px rgba(17, 23, 52, 0.35);
    transform: translateY(-6px);
}

.founder-image:hover::after {
    opacity: 1;
}

/* Founder Story */
.founder-story {
    opacity: 1;
}

.founder-section.founder-ready .founder-story {
    opacity: 0;
    transform: translateX(60px) scale(0.9);
}

.founder-section.founder-animate .founder-story {
    animation: founderStorySlide 1s var(--founder-ease) 0.16s forwards;
}

@keyframes founderStorySlide {
    0% {
        opacity: 0;
        transform: translateX(60px) scale(0.9);
        filter: blur(4px);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
        filter: blur(0);
    }
}

/* Quote Styling */
.founder-quote {
    margin-bottom: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f0f4f8 0%, #e2e8f0 100%);
    border-left: 4px solid #ffd700;
    border-radius: 1rem;
    position: relative;
}

.founder-quote i {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    font-size: 2.5rem;
    color: #ffd700;
    opacity: 0.4;
}

.founder-quote blockquote {
    margin: 0;
    padding-left: 2.5rem;
}

.founder-quote p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #1a2340;
    font-style: italic;
    margin: 0;
    font-weight: 500;
}

/* Bio Section */
.founder-bio h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
    color: #1a2340;
}

.founder-title {
    font-size: 1.15rem;
    color: #5b8cc9;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.founder-summary {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4c5a70;
    margin-bottom: 1.5rem;
}

.founder-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.founder-highlights li {
    position: relative;
    padding-left: 1.75rem;
    font-size: 0.98rem;
    color: #1a2340;
    font-weight: 600;
}

.founder-highlights li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.4rem;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffd700 0%, #f5a623 100%);
    box-shadow: 0 0 8px rgba(245, 166, 35, 0.45);
}

.founder-mission {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #5a6b7d;
    margin-bottom: 1.5rem;
}

.founder-mission-link {
    color: #5b8cc9;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease, text-decoration 0.2s ease;
    white-space: nowrap;
}

.founder-mission-link:hover,
.founder-mission-link:focus-visible {
    color: #1a2340;
    text-decoration: underline;
}

/* CTA Button */
.founder-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #ffd700 0%, #f4f689 100%);
    color: #1a2340;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 25px rgba(245, 215, 0, 0.35);
    margin-top: 0.5rem;
}

.founder-cta:hover {
    background: linear-gradient(135deg, #1a2340 0%, #2d3856 100%);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 16px 35px rgba(26, 35, 64, 0.4);
    text-decoration: none;
}

/* Responsive - Tablet */
@media (max-width: 968px) {
    .founder-tagline {
        font-size: 0.75rem;
        letter-spacing: 0.12em;
        padding: 0.45rem 1.5rem;
    }

    .founder-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .founder-image {
        max-width: 400px;
        margin: 0 auto;
    }

    .founder-story {
        text-align: left;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .founder-section {
        padding: 2.5rem 1rem;
    }

    .founder-tagline {
        font-size: 0.7rem;
        letter-spacing: 0.1em;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .founder-content {
        gap: 30px;
    }

    .founder-image {
        max-width: 100%;
    }

    .founder-quote {
        padding: 1.5rem;
    }

    .founder-quote i {
        font-size: 2rem;
        top: 1rem;
        left: 1rem;
    }

    .founder-quote blockquote {
        padding-left: 2rem;
    }

    .founder-quote p {
        font-size: 1.1rem;
    }

    .founder-bio h3 {
        font-size: 1.6rem;
    }

    .founder-title {
        font-size: 1rem;
    }

    .founder-description {
        font-size: 1rem;
    }

    .founder-cta {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .founder-section.founder-ready .section-header > *,
    .founder-section.founder-ready .founder-image,
    .founder-section.founder-ready .founder-story,
    .founder-section.founder-animate .section-header > *,
    .founder-section.founder-animate .founder-image,
    .founder-section.founder-animate .founder-story {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
    }
}

