:root {
    --primary: #31034d;
    --primary-dark: #170020;
    --secondary: #64158d;
    --gold: #d5ae5f;
    --gold-light: #f2d798;
    --white: #ffffff;
    --background: #faf7fb;
    --soft-background: #f4eef6;
    --text: #29202e;
    --text-light: #746a79;
    --border: rgba(49, 3, 77, 0.11);
    --shadow-small: 0 12px 35px rgba(29, 1, 42, 0.08);
    --shadow-medium: 0 22px 60px rgba(29, 1, 42, 0.14);
    --transition: 0.35s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    overflow-x: hidden;
    color: var(--text);
    background: var(--background);
    font-family: 'Inter', sans-serif;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
}

.founder-container {
    width: min(1240px, calc(100% - 40px));
    margin: 0 auto;
}

/* Header */

.founder-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    padding: 14px 0;
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 28px rgba(27, 0, 40, 0.05);
    backdrop-filter: blur(20px);
}

.founder-nav-container {
    width: min(1280px, calc(100% - 40px));
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.founder-logo img {
    width: 120px;
    filter: drop-shadow(0 5px 10px rgba(49, 3, 77, 0.12));
}

.founder-nav-links {
    display: flex;
    align-items: center;
    gap: 35px;
}

.founder-nav-links a {
    position: relative;
    padding: 10px 0;
    color: #46394c;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.7px;
    text-decoration: none;
    text-transform: uppercase;
    transition: color var(--transition);
}

.founder-nav-links a::after {
    content: '';
    position: absolute;
    right: 50%;
    bottom: 1px;
    left: 50%;
    height: 2px;
    border-radius: 20px;
    background: linear-gradient(
        90deg,
        var(--gold),
        var(--secondary)
    );
    transition:
        right var(--transition),
        left var(--transition);
}

.founder-nav-links a:hover,
.founder-nav-links a.active {
    color: var(--primary);
}

.founder-nav-links a:hover::after,
.founder-nav-links a.active::after {
    right: 0;
    left: 0;
}

.founder-mobile-menu {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--primary);
    background: white;
    font-size: 20px;
    cursor: pointer;
}

/* Hero */

.founder-hero {
    position: relative;
    min-height: 760px;
    padding: 160px 25px 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    background:
        linear-gradient(
            rgba(22, 0, 32, 0.72),
            rgba(22, 0, 32, 0.88)
        ),
        url('../images/bg.png') center/cover no-repeat;
}

.founder-hero::before {
    content: '';
    position: absolute;
    width: 480px;
    height: 480px;
    top: -240px;
    left: -230px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.13);
    box-shadow:
        0 0 0 55px rgba(255, 255, 255, 0.03),
        0 0 0 110px rgba(255, 255, 255, 0.02);
}

.founder-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 20% 30%,
            rgba(213, 174, 95, 0.16),
            transparent 26%
        ),
        radial-gradient(
            circle at 80% 75%,
            rgba(100, 21, 141, 0.22),
            transparent 30%
        );
}

.founder-hero-content {
    position: relative;
    z-index: 2;
    max-width: 920px;
}

.founder-small-heading {
    display: inline-block;
    margin-bottom: 22px;
    padding: 9px 18px;
    border: 1px solid rgba(213, 174, 95, 0.55);
    border-radius: 50px;
    color: var(--gold-light);
    background: rgba(255, 255, 255, 0.07);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.founder-hero h1 {
    color: white;
    font-size: clamp(48px, 7vw, 86px);
    letter-spacing: -2px;
}

.founder-hero h1 span {
    display: block;
    color: var(--gold-light);
}

.founder-hero p {
    max-width: 720px;
    margin: 28px auto 38px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 18px;
    line-height: 1.85;
}

.founder-primary-btn,
.founder-outline-btn {
    min-height: 52px;
    padding: 14px 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.7px;
    text-decoration: none;
    text-transform: uppercase;
    transition: var(--transition);
}

.founder-primary-btn {
    color: var(--primary-dark);
    background: linear-gradient(
        135deg,
        var(--gold-light),
        var(--gold)
    );
    box-shadow: 0 15px 35px rgba(213, 174, 95, 0.24);
}

.founder-primary-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 21px 44px rgba(213, 174, 95, 0.35);
}

.founder-outline-btn {
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.08);
}

.founder-outline-btn:hover {
    color: var(--primary);
    background: white;
    transform: translateY(-4px);
}

/* Introduction */

.founder-introduction {
    min-height: 100vh;
    padding: 115px 0 55px;
    background:
        radial-gradient(circle at 12% 15%, rgba(213, 174, 95, 0.10), transparent 24%),
        linear-gradient(135deg, #ffffff 0%, #f8f3fa 100%);
}

.founder-introduction .founder-container {
    width: min(1320px, calc(100% - 40px));
    margin: 0 auto;
}

.founder-intro-grid {
    height: calc(100vh - 170px);
    display: grid;
    grid-template-columns: 390px minmax(0, 1fr);
    gap: 40px;
    align-items: stretch;
    padding: 26px;
    border: 1px solid rgba(49, 3, 77, 0.12);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow:
        0 28px 75px rgba(42, 6, 63, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.80);
    overflow: hidden;
}

.founder-image-wrapper {
    position: relative;
    height: 100%;
    min-height: 0;
    padding: 8px;
    border-radius: 24px;
    background:
        linear-gradient(
            145deg,
            rgba(213, 174, 95, 0.22),
            rgba(100, 21, 141, 0.08)
        );
    overflow: hidden;
}

.founder-main-image {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 20px;
    box-shadow: 0 18px 45px rgba(42, 6, 63, 0.18);
}

.founder-image-border {
    position: absolute;
    inset: 8px;
    z-index: 3;
    border: 1px solid rgba(213, 174, 95, 0.72);
    border-radius: 20px;
    pointer-events: none;
}

.founder-experience-box {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 4;
    padding: 18px 20px;
    color: white;
    background:
        linear-gradient(
            135deg,
            rgba(23, 0, 32, 0.96),
            rgba(49, 3, 77, 0.96)
        );
    border: 1px solid rgba(213, 174, 95, 0.46);
    border-radius: 18px;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(12px);
}

.founder-experience-box strong {
    display: block;
    margin-bottom: 4px;
    color: var(--gold-light);
    font-family: 'Playfair Display', serif;
    font-size: 23px;
    line-height: 1.2;
}

.founder-experience-box span {
    display: block;
    color: rgba(255, 255, 255, 0.74);
    font-size: 12px;
    line-height: 1.55;
}

.section-label {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--gold);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.founder-intro-content {
    height: 100%;
    min-height: 0;
    padding: 10px 20px 18px 4px;
    overflow-y: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.founder-intro-content::-webkit-scrollbar {
    width: 7px;
}

.founder-intro-content::-webkit-scrollbar-track {
    background: rgba(49, 3, 77, 0.06);
    border-radius: 20px;
}

.founder-intro-content::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--primary), var(--secondary));
    border-radius: 20px;
}

.founder-intro-content {
    scrollbar-width: thin;
    scrollbar-color: var(--primary) rgba(49, 3, 77, 0.06);
}

.founder-intro-content h2 {
    margin-bottom: 18px;
    color: var(--primary);
    font-size: clamp(34px, 3.8vw, 50px);
    line-height: 1.14;
}

.founder-highlight-text {
    margin-bottom: 18px;
    padding: 16px 20px;
    color: var(--primary);
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-style: italic;
    line-height: 1.65;
    border-left: 3px solid var(--gold);
    background:
        linear-gradient(
            90deg,
            rgba(213, 174, 95, 0.12),
            transparent
        );
    border-radius: 0 12px 12px 0;
}

.founder-intro-content > p {
    margin-bottom: 14px;
    color: var(--text-light);
    font-size: 13.5px;
    line-height: 1.78;
    text-align: justify;
}

.founder-signature {
    margin-top: 22px;
    padding: 20px 22px;
    display: flex;
    align-items: center;
    border: 1px solid rgba(213, 174, 95, 0.34);
    border-radius: 16px;
    background:
        linear-gradient(
            135deg,
            var(--primary-dark),
            var(--primary)
        );
    box-shadow: 0 12px 30px rgba(42, 6, 63, 0.16);
}

.founder-signature h3 {
    margin-bottom: 4px;
    color: var(--gold-light);
    font-size: 24px;
}

.founder-signature span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
}


/* Common heading */

.founder-section-heading {
    max-width: 760px;
    margin: 0 auto 70px;
    text-align: center;
}

.founder-section-heading h2 {
    color: var(--primary);
    font-size: clamp(38px, 5vw, 58px);
}

.founder-section-heading p {
    max-width: 630px;
    margin: 18px auto 0;
    color: var(--text-light);
    font-size: 15px;
}

/* Timeline */

.founder-timeline-section {
    padding: 120px 0;
    background: var(--soft-background);
}

.founder-timeline {
    max-width: 950px;
    margin: 0 auto;
    position: relative;
}

.founder-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 48px;
    width: 1px;
    background: linear-gradient(
        var(--gold),
        rgba(100, 21, 141, 0.25)
    );
}

.timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 98px 1fr;
    gap: 35px;
    margin-bottom: 38px;
}

.timeline-number {
    position: relative;
    z-index: 2;
    width: 98px;
    height: 98px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(213, 174, 95, 0.55);
    border-radius: 50%;
    color: var(--gold-light);
    background:
        linear-gradient(
            135deg,
            var(--primary-dark),
            var(--primary)
        );
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    box-shadow: var(--shadow-small);
}

.timeline-content {
    padding: 28px 32px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: white;
    box-shadow: var(--shadow-small);
    transition: var(--transition);
}

.timeline-content:hover {
    transform: translateX(8px);
    border-color: rgba(213, 174, 95, 0.45);
    box-shadow: var(--shadow-medium);
}

.timeline-content span {
    color: var(--gold);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.timeline-content h3 {
    margin: 8px 0 10px;
    color: var(--primary);
    font-size: 25px;
}

.timeline-content p {
    color: var(--text-light);
    font-size: 14px;
}

/* Thoughts */

.founder-thoughts-section {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    background:
        radial-gradient(
            circle at 10% 15%,
            rgba(213, 174, 95, 0.12),
            transparent 24%
        ),
        linear-gradient(
            135deg,
            var(--primary-dark),
            var(--primary)
        );
}

.light-heading h2 {
    color: white;
}

.light-heading p {
    color: rgba(255, 255, 255, 0.67);
}

.founder-thoughts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.founder-thought-card {
    min-height: 315px;
    padding: 35px 25px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    transition: var(--transition);
}

.founder-thought-card:hover {
    transform: translateY(-10px);
    border-color: rgba(213, 174, 95, 0.55);
    background: rgba(255, 255, 255, 0.10);
}

.thought-icon {
    width: 66px;
    height: 66px;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(213, 174, 95, 0.55);
    border-radius: 18px;
    color: var(--gold-light);
    background: rgba(213, 174, 95, 0.08);
    font-size: 24px;
}

.founder-thought-card h3 {
    margin-bottom: 14px;
    color: white;
    font-size: 24px;
}

.founder-thought-card p {
    color: rgba(255, 255, 255, 0.63);
    font-size: 14px;
}

/* Quote */

.founder-quote-section {
    padding: 120px 25px;
    text-align: center;
    background:
        linear-gradient(
            rgba(255, 255, 255, 0.93),
            rgba(255, 255, 255, 0.93)
        ),
        url('../images/bg.png') center/cover fixed;
}

.founder-quote-content {
    max-width: 970px;
    margin: 0 auto;
}

.founder-quote-content > i {
    margin-bottom: 25px;
    color: var(--gold);
    font-size: 45px;
}

.founder-quote-content blockquote {
    color: var(--primary);
    font-family: 'Playfair Display', serif;
    font-size: clamp(30px, 4.5vw, 50px);
    line-height: 1.45;
}

.quote-author {
    margin-top: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.quote-line {
    width: 60px;
    height: 1px;
    background: var(--gold);
}

.quote-author p {
    color: var(--secondary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Vision */

.founder-vision-section {
    padding: 120px 0;
    background: white;
}

.founder-vision-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.vision-card {
    position: relative;
    overflow: hidden;
    min-height: 370px;
    padding: 42px 32px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: var(--background);
    box-shadow: var(--shadow-small);
    transition: var(--transition);
}

.vision-card:hover {
    transform: translateY(-10px);
    border-color: rgba(213, 174, 95, 0.45);
    box-shadow: var(--shadow-medium);
}

.featured-vision {
    color: white;
    background:
        linear-gradient(
            145deg,
            var(--primary-dark),
            var(--primary)
        );
}

.vision-number {
    position: absolute;
    top: 20px;
    right: 25px;
    color: rgba(49, 3, 77, 0.07);
    font-family: 'Playfair Display', serif;
    font-size: 80px;
    font-weight: 700;
    line-height: 1;
}

.featured-vision .vision-number {
    color: rgba(255, 255, 255, 0.07);
}

.vision-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    color: white;
    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--secondary)
        );
    font-size: 26px;
}

.featured-vision .vision-icon {
    color: var(--primary);
    background:
        linear-gradient(
            135deg,
            var(--gold-light),
            var(--gold)
        );
}

.vision-card h3 {
    margin-bottom: 16px;
    color: var(--primary);
    font-size: 29px;
}

.featured-vision h3 {
    color: white;
}

.vision-card p {
    position: relative;
    z-index: 2;
    color: var(--text-light);
    font-size: 14px;
}

.featured-vision p {
    color: rgba(255, 255, 255, 0.67);
}

/* CTA */

.founder-cta {
    position: relative;
    overflow: hidden;
    padding: 110px 25px;
    text-align: center;
    color: white;
    background:
        radial-gradient(
            circle at 20% 20%,
            rgba(213, 174, 95, 0.14),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            var(--primary-dark),
            var(--secondary)
        );
}

.founder-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.founder-cta-content > span {
    color: var(--gold-light);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.founder-cta h2 {
    margin: 14px 0 20px;
    color: white;
    font-size: clamp(40px, 6vw, 65px);
}

.founder-cta p {
    max-width: 660px;
    margin: 0 auto 35px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 16px;
}

.founder-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* Footer */

.founder-footer {
    color: white;
    background: #120018;
}

.founder-footer-container {
    width: min(1240px, calc(100% - 40px));
    margin: 0 auto;
    padding: 55px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.founder-footer-brand img {
    width: 130px;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
}

.founder-footer-brand p {
    max-width: 430px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 13px;
}

.founder-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.founder-footer-links a {
    color: rgba(255, 255, 255, 0.64);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none;
    text-transform: uppercase;
    transition: color var(--transition);
}

.founder-footer-links a:hover {
    color: var(--gold-light);
}

.founder-footer-bottom {
    padding: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.38);
    font-size: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Responsive */

@media (max-width: 1000px) {
    .founder-nav-links {
        gap: 22px;
    }

    .founder-intro-grid {
        grid-template-columns: 340px minmax(0, 1fr);
        gap: 28px;
        padding: 20px;
    }

    .founder-thoughts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 850px) {
    .founder-mobile-menu {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .founder-nav-links {
        display: none;
        position: absolute;
        top: calc(100% + 8px);
        right: 15px;
        left: 15px;
        padding: 18px;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        border: 1px solid var(--border);
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: var(--shadow-medium);
    }

    .founder-nav-links.show {
        display: flex;
    }

    .founder-nav-links a {
        padding: 12px 14px;
        border-radius: 9px;
    }

    .founder-nav-links a::after {
        display: none;
    }

    .founder-nav-links a:hover,
    .founder-nav-links a.active {
        background: var(--soft-background);
    }

    .founder-intro-grid {
        height: auto;
        grid-template-columns: 1fr;
        gap: 24px;
        overflow: visible;
    }

    .founder-image-wrapper {
        width: 100%;
        max-width: 570px;
        height: 500px;
        margin: 0 auto;
    }

    .founder-intro-content {
        height: auto;
        padding: 8px 4px 15px;
        overflow: visible;
    }

    .founder-vision-grid {
        grid-template-columns: 1fr;
    }

    .vision-card {
        min-height: auto;
    }

    .founder-footer-container {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 650px) {
    .founder-container {
        width: min(100% - 28px, 1240px);
    }

    .founder-nav-container {
        width: calc(100% - 28px);
    }

    .founder-logo img {
        width: 102px;
    }

    .founder-hero {
        min-height: 690px;
        padding: 140px 18px 80px;
    }

    .founder-hero h1 {
        font-size: 45px;
        letter-spacing: -1px;
    }

    .founder-hero p {
        font-size: 15px;
    }

    .founder-introduction {
        min-height: auto;
        padding: 95px 14px 50px;
    }

    .founder-timeline-section,
    .founder-thoughts-section,
    .founder-vision-section {
        padding: 80px 0;
    }

    .founder-introduction .founder-container {
        width: 100%;
    }

    .founder-intro-grid {
        padding: 14px;
    }

    .founder-image-wrapper {
        height: 470px;
    }

    .founder-experience-box {
        left: 18px;
        right: 18px;
        bottom: 18px;
        width: auto;
        padding: 16px 18px;
    }

    .founder-intro-content > p {
        font-size: 14px;
        text-align: left;
    }

    .founder-intro-content h2,
    .founder-section-heading h2 {
        font-size: 39px;
    }

    .timeline-item {
        grid-template-columns: 60px 1fr;
        gap: 18px;
    }

    .founder-timeline::before {
        left: 30px;
    }

    .timeline-number {
        width: 60px;
        height: 60px;
        font-size: 17px;
    }

    .timeline-content {
        padding: 22px 18px;
    }

    .founder-thoughts-grid {
        grid-template-columns: 1fr;
    }

    .founder-thought-card {
        min-height: auto;
    }

    .founder-quote-section {
        padding: 80px 18px;
        background-attachment: scroll;
    }

    .founder-quote-content blockquote {
        font-size: 29px;
    }

    .founder-cta {
        padding: 80px 18px;
    }

    .founder-cta h2 {
        font-size: 39px;
    }

    .founder-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .founder-cta-buttons a {
        width: min(100%, 330px);
    }

    .founder-footer-container {
        width: calc(100% - 28px);
    }

    .founder-footer-links {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .founder-image-wrapper {
        height: 420px;
    }

    .founder-experience-box {
        left: 14px;
        right: 14px;
        bottom: 14px;
        padding: 14px 16px;
    }

    .founder-experience-box strong {
        font-size: 20px;
    }

    .founder-intro-content h2 {
        font-size: 33px;
    }
}

.highlight-name{
    color: black;
    font-weight: 700;
    letter-spacing: .3px;
}