/* FOUNDER PAGE STYLES */
.founder-hero-section {
    text-align: center;
    padding: 120px 20px 60px;
    max-width: 900px;
    margin: 0 auto;
}

.founder-hero-section h1 {
    font-size: 56px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.founder-hero-section p {
    font-size: 20px;
    color: #6e6e73;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

.founder-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    padding: 60px 0;
    max-width: 1000px;
    margin: 0 auto;
}

.founder-image-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.2);
    transform: rotate(-2deg);
    transition: transform 0.3s ease;
}

.founder-image-wrapper:hover {
    transform: rotate(0deg) scale(1.02);
}

.founder-image {
    width: 100%;
    display: block;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.founder-label {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    padding: 12px 24px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.founder-name {
    display: block;
    font-weight: 700;
    color: #1d1d1f;
    font-size: 16px;
}

.founder-title {
    display: block;
    font-size: 13px;
    color: #86868b;
    font-weight: 500;
}

/* Content Side */
.founder-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.tech-badge {
    background: #e3f2fd;
    color: #0071e3;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.founder-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -1px;
}

.founder-content p {
    font-size: 17px;
    color: #424245;
    line-height: 1.7;
    margin-bottom: 24px;
}

.founder-content strong {
    color: #1d1d1f;
    font-weight: 600;
}

.stat-box {
    background: #fbfbfd;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    margin-top: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.stat-number {
    display: block;
    font-size: 48px;
    font-weight: 800;
    color: #1d1d1f;
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #86868b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.why-handcode-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 80px auto;
    text-align: center;
}

.why-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 24px;
    padding: 40px 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.why-icon {
    width: 48px;
    height: 48px;
    background: #f5f5f7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #0071e3;
}

.why-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.why-card p {
    font-size: 15px;
    color: #86868b;
    line-height: 1.5;
}

@media (max-width: 800px) {
    .founder-hero-section h1 {
        font-size: 40px;
    }

    .founder-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .founder-image-wrapper {
        transform: rotate(0);
        margin-bottom: 20px;
    }

    .why-handcode-grid {
        grid-template-columns: 1fr;
        padding-left: 20px;
        padding-right: 20px;
    }
}