.founder-dark-page {
    background-color: #060E1C; /* Dark Navy */
    color: #FFFFFF;
}

.founder-main {
    padding: 180px 10% 120px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

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

.founder-flex {
    display: flex;
    align-items: center;
    gap: 80px;
}

.founder-img-container {
    flex: 1;
}

.img-frame {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.img-frame img {
    width: 100%;
    display: block;
    transition: 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.founder-content {
    flex: 1.2;
}

.founder-tag {
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 5px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    display: block;
}

.founder-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 40px;
}

.founder-content h1 span {
    color: var(--gold);
}

.bio-text p {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
}

.founder-cta-box {
    margin-top: 50px;
}

.btn-gold {
    background: var(--gold);
    color: var(--navy);
    padding: 20px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1rem;
    display: inline-block;
    transition: 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.btn-gold:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1100px) {
    .founder-flex { flex-direction: column; text-align: center; gap: 60px; }
    .founder-content h1 { font-size: 3.5rem; }
    .bio-text p { font-size: 1.1rem; }
}

@media (max-width: 768px) {
    .founder-main { padding-top: 140px; }
    .founder-content h1 { font-size: 2.8rem; }
}
