/* ================================================================
   founder.css — Vividhity Ventures | Founder Page
   Simple, clean — image left, content right
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Sora:wght@400;600;700;800&display=swap');

:root {
    --blue: #2563EB;
    --blue-dark: #1D4ED8;
    --blue-light: #EFF6FF;
    --blue-mid: #DBEAFE;
    --blue-200: #BFDBFE;
    --ink: #0F172A;
    --ink-2: #1E293B;
    --body-text: #475569;
    --muted: #94A3B8;
    --border: #E2E8F0;
    --white: #FFFFFF;
    --font-body: 'Inter', sans-serif;
    --font-head: 'Sora', sans-serif;
    --radius-lg: 22px;
    --shadow-lg: 0 20px 60px rgba(15, 23, 42, 0.13);
    --shadow-blue: 0 8px 32px rgba(37, 99, 235, 0.22);
    --tr: 0.38s cubic-bezier(0.16, 1, 0.3, 1);
}

.fd-page *,
.fd-page *::before,
.fd-page *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.fd-page {
    font-family: var(--font-body);
    color: var(--body-text);
    background: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

.fd-wrap {
    max-width: 95%;
    margin: 0 auto;
    padding: 0 32px;
}

/* ── MAIN SECTION ── */
.fd-main {
    padding: 80px 0 100px;
    background: var(--white);
}

.fd-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 72px;
    align-items: flex-start;
}

/* ── LEFT: Image Column ── */
.fd-image-col {
    display: flex;
}

.fd-image-wrap {
    position: relative;
    width: 100%;
    border-radius: var(--radius-lg);
    animation: fdFloat 8s ease-in-out infinite;
}

/* Animated gradient ring */
.fd-image-wrap::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: calc(var(--radius-lg) + 3px);
    background: linear-gradient(135deg, var(--blue), #0EA5E9, var(--blue-dark));
    background-size: 200% 200%;
    animation: fdGradientSpin 5s linear infinite;
    z-index: 0;
    opacity: 0.5;
}

/* white gap between ring and image */
.fd-image-wrap::after {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: calc(var(--radius-lg) - 1px);
    background: var(--white);
    z-index: 1;
}

.fd-image-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.fd-image-inner img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* Floating badge */
.fd-badge {
    position: absolute;
    bottom: -18px;
    right: -18px;
    z-index: 10;
    background: #085394;
    color: var(--white);
    border-radius: 14px;
    padding: 16px 22px;
    box-shadow: var(--shadow-blue);
    min-width: 160px;
}

.fd-badge__name {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 3px;
}

.fd-badge__role {
    font-size: 0.71rem;
    opacity: 0.78;
    font-weight: 500;
}

/* ── RIGHT: Content Column ── */
.fd-content-col {
    display: flex;
    flex-direction: column;
    padding-top: 8px;
}

.fd-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 10px;
}

.fd-name {
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--ink);
    letter-spacing: -0.5px;
    margin-bottom: 6px;
}

.fd-role {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.fd-role::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 2px;
    background: var(--blue);
    border-radius: 2px;
    flex-shrink: 0;
}

/* .fd-divider {
    width: 44px;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), #0EA5E9);
    border-radius: 2px;
    margin-bottom: 24px;
} */

.fd-para {
    font-size: 0.97rem;
    color: var(--body-text);
    line-height: 1.82;
    margin-bottom: 16px;
}

.fd-para:last-child {
    margin-bottom: 0;
}

.fd-para strong {
    color: var(--ink-2);
    font-weight: 600;
}

/* ── Scroll Reveal ── */
.fd-reveal-left,
.fd-reveal-right {
    opacity: 0;
    transition: opacity 0.65s var(--tr), transform 0.65s var(--tr);
}

.fd-reveal-left {
    transform: translateX(-32px);
}

.fd-reveal-right {
    transform: translateX(32px);
}

.fd-reveal-left.fd-visible,
.fd-reveal-right.fd-visible {
    opacity: 1;
    transform: none;
}

/* ── Keyframes ── */
@keyframes fdFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes fdGradientSpin {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* ── Responsive ── */
@media (max-width: 860px) {
    .fd-grid {
        grid-template-columns: 1fr;
        gap: 52px;
    }

    .fd-badge {
        bottom: -14px;
        right: 12px;
    }
}

@media (max-width: 600px) {
    .fd-main {
        padding: 56px 0 72px;
    }

    .fd-wrap {
        padding: 0 20px;
    }
}