/* ============================================
   FOUNDER PAGE — bespoke styles
   Builds on top of style.css
   ============================================ */

.founder-hero {
    position: relative;
    z-index: 2;
    padding: 160px 0 120px;
}

.founder-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: start;
}

.founder-photo-wrapper {
    position: sticky;
    top: 120px;
}

/* ---------- Photo Card ---------- */
.founder-photo-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.founder-photo-glow {
    display: none;
}

.founder-photo-card {
    padding: 0;
    border: none;
    background: transparent;
    border-radius: 0;
    position: relative;
    width: 100%;
    max-width: 420px;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.founder-photo {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: center top;
    display: block;
    border-radius: 18px;
}

/* No mask, no vignette — photo shows in its original form */
.founder-photo-card::after { content: none; }

.founder-photo-badge {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--text-primary);
    color: #ffffff;
    border: 1px solid var(--text-primary);
    border-radius: 999px;
    padding: 10px 22px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-outfit);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--text-primary);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.founder-photo-badge i {
    color: var(--accent-orange);
}

/* ---------- Content ---------- */
.founder-content {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.founder-name {
    font-family: var(--font-outfit);
    font-size: clamp(40px, 4.5vw, 62px);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -0.02em;
    margin-top: 4px;
    white-space: normal;
}

.founder-name span {
    display: inline;
    margin-right: 14px;
}

.founder-role {
    font-family: var(--font-outfit);
    font-size: 17px;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.3px;
    margin-bottom: 8px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border-color);
}

.founder-bio {
    font-size: 15.5px;
    line-height: 1.75;
    color: var(--text-secondary);
}

.founder-bio strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* ---------- Quote Card ---------- */
.founder-quote {
    position: relative;
    padding: 32px 36px 28px;
    border-left: 3px solid var(--accent-orange);
    border-radius: 16px;
    margin: 12px 0 6px;
    overflow: hidden;
}

.founder-quote::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
                rgba(242, 85, 39, 0.06) 0%,
                transparent 60%);
    pointer-events: none;
}

.quote-icon {
    color: var(--accent-orange);
    font-size: 24px;
    opacity: 0.6;
    margin-bottom: 12px;
}

.quote-text {
    font-family: var(--font-outfit);
    font-size: 22px;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.4;
    font-style: italic;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.quote-attrib {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.4px;
}

/* ---------- Stat Strip ---------- */
.founder-stats {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    padding: 22px 28px;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    background: var(--bg-soft);
    margin: 18px 0 10px;
    flex-wrap: wrap;
}

.founder-stat {
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex: 1;
    min-width: 200px;
    padding: 4px 28px;
    position: relative;
}

.founder-stat + .founder-stat::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 38px;
    background: linear-gradient(180deg,
                transparent,
                var(--border-color-glow),
                transparent);
}

.founder-stat:first-child {
    padding-left: 4px;
}

.founder-stat-num {
    font-family: var(--font-outfit);
    font-size: 34px;
    font-weight: 700;
    color: var(--accent-orange);
    line-height: 1;
}

.founder-stat-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.founder-cta-row {
    margin-top: 12px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.founder-cta-row .btn-go {
    width: auto;
    padding-left: 40px;
    padding-right: 40px;
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
    .founder-hero {
        padding: 120px 0 80px;
    }
    .founder-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .founder-photo-card {
        max-width: 360px;
        margin: 0 auto;
    }
    .founder-stats {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 520px) {
    .founder-stats {
        grid-template-columns: 1fr;
    }
    .founder-quote {
        padding: 24px 22px;
    }
    .quote-text {
        font-size: 19px;
    }
}
