/* =========================================
   VENTURE STUDIO PAGE STYLES
   ========================================= */

.venture-studio-page {
    background: var(--white);
    overflow-x: hidden;
}

/* --- UTILITIES --- */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: start;
}

.centered {
    text-align: center;
}

.gray-bg {
    background: #f8f9fa;
}

.dark-section {
    background: var(--primary-pink);
    color: var(--white);
    padding: 8rem 0;
}

/* --- HERO SECTION --- */
.vs-hero {
    padding: 8rem 0 6rem;
    position: relative;
    min-height: auto;
    display: flex;
    align-items: center;
    background-color: var(--bg-light);
}

.vs-hero .container {
    margin-left: 0;
    margin-right: auto;
    max-width: 1400px;
    width: 100%;
}

.vs-hero-content {
    max-width: 750px;
    text-align: left;
    padding-left: 5%;
}

.vs-hero .hero-title {
    font-size: var(--h2-fs);
    line-height: 1.1;
    color: var(--primary-pink);
    margin-bottom: 2rem;
    font-weight: 800;
    text-align: left;
}

.vs-hero .hero-lead {
    font-size: var(--body-fs);
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    text-align: left;
}

.hero-cta-highlight {
    font-size: var(--body-lg-fs);
    font-weight: 600;
    color: var(--secondary-purple);
    border-left: 5px solid var(--teal);
    padding: 1.2rem 2rem;
    display: table;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 0 16px 16px 0;
    text-align: left;
}

/* --- THESIS SECTION --- */
.vs-thesis {
    padding: 10rem 0;
    background: #ffffff;
}

.thesis-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 8rem;
    margin-bottom: 5rem;
    align-items: center;
    /* Center content vertically */
}

.thesis-header h2 {
    font-size: var(--h2-fs);
    line-height: 1;
    margin-bottom: 3rem;
    color: var(--primary-pink);
}

.thesis-intro {
    font-size: var(--body-lg-fs);
    line-height: 1.8;
    color: var(--text-dark);
}

.thesis-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.2rem;
}

.thesis-list li {
    font-size: var(--body-fs);
    padding: 1.8rem 2.2rem;
    background: #f8f9fa;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.thesis-list li:hover {
    background: #ffffff;
    border-color: var(--teal);
    transform: translateX(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.thesis-list li i {
    color: var(--teal);
    font-size: var(--body-lg-fs);
    margin-top: 0.2rem;
}

.thesis-outro-wrapper {
    width: 100%;
    margin-top: 2rem;
}

.thesis-outro {
    padding: 3.5rem;
    background: #f0f4f4;
    border-radius: 24px;
    border-top: 6px solid var(--secondary-purple);
    text-align: center;
}

.thesis-outro p {
    margin: 0;
    font-size: var(--body-lg-fs);
    line-height: 1.6;
    font-weight: 600;
    color: var(--secondary-purple);
}

@media (max-width: 1024px) {
    .vs-thesis .container.grid-2 {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .thesis-header h2 {
        font-size: var(--h2-fs);
    }
}

/* --- PORTFOLIO SECTION --- */
.vs-portfolio {
    padding: 8rem 0;
    background: #fcfcfc;
    overflow: hidden;
}

.section-header.centered {
    margin-bottom: 5rem;
}

.portfolio-carousel-container {
    position: relative;
    padding: 2rem 0;
}

.portfolio-grid {
    display: flex;
    gap: 3.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 3rem 5%;
    /* Padding side to help preview effect */
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
    scroll-snap-type: x mandatory;
    /* Snap for better carousel feel */
}

.portfolio-grid::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.portfolio-card {
    flex: 0 0 900px;
    /* Much wider for landscape feel */
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 40px;
    padding: 5rem;
    display: flex;
    flex-direction: column;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    height: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
    scroll-snap-align: center;
    /* Snap cards to center */

    /* Spotlight effect for non-active cards */
    opacity: 0.4;
    transform: scale(0.85);
    filter: blur(2px);
}

.portfolio-card.is-active {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    border-color: var(--teal);
}

.portfolio-card:hover {
    border-color: var(--teal);
}

.card-top {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.card-num {
    width: 55px;
    height: 55px;
    background: var(--primary-pink);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-weight: 800;
    font-size: var(--body-fs);
}

.card-top h3 {
    font-size: var(--card-title-fs);
    margin: 0;
    color: var(--primary-pink);
    letter-spacing: -1px;
    font-weight: 800;
}

.outcome-label {
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--teal);
    margin-bottom: 1rem;
}

.outcome-text {
    font-size: var(--body-lg-fs);
    line-height: 1.4;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    font-weight: 700;
}

.description {
    font-size: var(--body-fs);
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.why-it-matters {
    margin-top: auto;
    padding: 2rem 2.5rem;
    background: #f8fbfb;
    border-radius: 20px;
    border-left: 6px solid var(--teal);
}

.why-it-matters h5 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--teal);
    margin-bottom: 0.8rem;
}

.why-it-matters p {
    font-size: var(--body-fs);
    line-height: 1.6;
    color: var(--text-dark);
    margin: 0;
}

.card-footer {
    margin-top: 2.5rem;
}

.portfolio-cta {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    font-weight: 800;
    color: var(--primary-pink);
    transition: all 0.3s ease;
    font-size: 1.05rem;
}

.portfolio-cta:hover {
    color: var(--teal);
    gap: 1.5rem;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.carousel-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #fff;
    color: var(--primary-pink);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.carousel-btn:hover {
    background: var(--primary-pink);
    color: #fff;
    transform: scale(1.1);
    border-color: var(--primary-pink);
}

@media (max-width: 768px) {
    .portfolio-card {
        flex: 0 0 85vw;
        padding: 2.5rem;
        min-height: auto;
    }

    .card-top h3 {
        font-size: 1.6rem;
    }
}

/* --- HOW WE WORK SECTION --- */
.vs-work {
    padding: 10rem 0;
}

.work-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    padding: 0;
}

.work-list li {
    font-size: var(--body-fs);
    background: var(--white);
    padding: 2rem 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    color: var(--text-dark);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.work-list li:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-color: var(--primary-pink);
}

.work-list li strong {
    color: var(--primary-pink);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.2rem;
}

.work-cta {
    margin-top: 3rem;
    font-size: var(--body-lg-fs);
    font-weight: 700;
    color: var(--secondary-purple);
}

/* --- OUTCOMES SECTION --- */
.vs-outcomes {
    padding: 12rem 0;
}

.vs-outcomes .container {
    max-width: 1600px;
}

.outcomes-box {
    background: var(--primary-pink);
    padding: 8rem 6%;
    border-radius: 40px;
    color: var(--white);
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 6rem;
    align-items: flex-start;
}

.outcomes-header h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 3rem;
}

.outcomes-header p {
    opacity: 0.9;
    font-size: 1.2rem;
    line-height: 1.6;
}

.outcomes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.outcome-stat-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 4rem;
    border-radius: 24px;
    font-size: 1.1rem;
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: 100%;
    justify-content: center;
}

.outcome-stat-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-8px);
    border-color: var(--white);
}

/* .outcome-stat-item i {
    color: var(--teal);
    font-size: 2rem;
    margin-bottom: 0.5rem;
} */

/* --- FINAL CTA --- */
.vs-final-cta .cta-title {
    font-size: var(--h1-fs);
    margin-bottom: 2.5rem;
    color: var(--white);
    line-height: 1;
}

.vs-final-cta .cta-text {
    font-size: var(--subtitle-fs);
    margin-bottom: 4rem;
    opacity: 0.9;
    font-weight: 500;
}

.vs-final-cta .btn {
    background: var(--teal);
    color: var(--primary-pink);
    border-color: var(--teal);
}

.vs-final-cta .btn:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--primary-pink);
    transform: translateY(-5px);
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .outcomes-box {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .outcomes-grid {
        grid-template-columns: 1fr;
    }

    .vs-hero .hero-title {
        font-size: var(--h1-fs);
    }

    .outcomes-box {
        padding: 3rem;
        grid-template-columns: 1fr;
        /* Ensure box collapses too */
    }

    .work-list {
        grid-template-columns: 1fr;
    }
}