/* Pico.css handle resets */
/* OG pixels sizes based on 1440 artboard witdh converted to rems based on 16px font size */

body {
    color: #333; 
}

/* Reset Pico.css row margin as it's messing with the total width of the page */
body .row {
    margin-right: 0;
    margin-left: 0;
}

/* Header Styles */
header {
    padding: 1.25rem 0; /* 20px 0 */
    background-color: transparent;
    position: absolute; /* Position over hero */
    width: 100%;
    z-index: 10; /* Ensure it's on top */
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* .logo {
    font-family: 'Teko', sans-serif; 
    font-size: 1.5rem;
    font-weight: 500;
    color: white;
} */

.logo img {
    width: 7.75rem;
    height: auto;
}

nav a {
    text-decoration: none;
    color: #1A98FE;
    font-weight: 300;
    border: 1px white solid;
    padding: 0.625rem 1.5625rem; /* 10px 25px */
    border-radius: 1.25rem; /* 20px */
    font-size: 1rem; /* 16px */
    border-color: #1A98FE;
    background-color: white;
}

/* Hero Section Styles */
.hero {
    background-color: #0889F1;
    color: white;
    height: 100vh; /* Make hero section full viewport height */
    display: flex; /* Enable flexbox for vertical centering */
    align-items: flex-end; /* Vertically align content to the bottom */
    justify-content: flex-start; /* Align content to the left */
    padding: 0;
}

.hero .container {
    width: 100%; /* Allow container to expand  */
    padding-bottom: 0rem; /* 0px */
}

.hero h1 {
    font-family: 'Satoshi', sans-serif;
    font-weight: 500;
    font-size: 4.6875rem; /* 75px */
    line-height: 110%;
    letter-spacing: 0%;
    margin-bottom: 3.125rem; /* 50px */
    /* Text gradient for fade effect */
    background: linear-gradient(to bottom, white, rgba(255, 255, 255, 0.6));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Content Section Styles */
.content-section {
    padding: 3.75rem 0; /* 60px 0 */
    background-color: #ededed;
    margin: 0;
}

body section{
    margin: 0;
}

#llabs main {
    padding: 0;
}

.small-blue-text {
    font-family: 'Satoshi', sans-serif;
    font-weight: 500;
    font-size: 0.875rem; /* 14px */
    line-height: 140%;
    letter-spacing: 0%;
    color: #0889F1;
}

.small-black-text {
    font-family: 'Satoshi', sans-serif;
    font-weight: 500;
    font-size: 0.875rem; /* 14px  */
    line-height: 140%;
    letter-spacing: 0%;
    color: #000;
}

.big-black-text-container {
    background-color: #ededed;
    padding-bottom: 2.5rem; /* 40px */
}

.big-black-text {
    font-family: 'Satoshi', sans-serif;
    font-weight: 400;
    font-size: 2.5rem; /* 40px */
    line-height: 110%; 
    letter-spacing: 0%;
    color: #000; 
}

.big-black-text strong {
    font-weight: 700;
}


section {
    margin-bottom: 0;
}

/* Custom grid styling for the content section */
.content-grid {
    gap: 2.5rem; /* 40px */
    margin-bottom: 2.5rem; /* 40px */
}

/* ScrollyTelling Styles for Approach Section */
.scrolly-section {
    position: relative;
    background-color: #ededed;
    width: 100%;
    padding-top: 0; /* No top padding by default, first-section-ready handles it */
}

/* Class for the first section immediately being visible */
.scrolly-section.first-section-ready {
    padding-top: 0; /* Ensure no extra padding when first section is ready */
}

.scrolly-container {
    position: relative; /* Stacking context for absolute .sticky-container */
    background-color: #ededed;
    width: 100%;
    /* border-top: 1px solid #E1E1E1;
    border-bottom: 1px solid #E1E1E1; */
}

.sticky-container {
    position: absolute; /* Initially out of flow */
    top: 0;
    left: 0;
    width: 100%; /* GSAP will pin this. Its child .approach-number-indicator gives visual width. */
    height: 100vh;
    z-index: 5; /* Above scrolling content wrappers */
    pointer-events: none; /* Allow clicks to pass through to content underneath */
    /* display: flex and flex-direction: column removed as they are not needed for absolute positioning */
}

.approach-number-indicator {
    position: absolute;
    top: 1.875rem; /* 30px */
    left: 0; /* Changed from 1.875rem to be flush left */
    padding: 1.25rem; /* 20px */
    z-index: 10; /* Within .sticky-container, but effectively above content due to parent z-index */
    border: 1px solid #E1E1E1;
    border-left: none; /* Removed screen edge border */
    background-color: #ededed;
    width: 16.7%; /* Matches col-md-2 */
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: calc(100vh - 3.75rem); /* 60px */
    pointer-events: auto; /* Number indicator itself is interactive */
}

.approach-section-wrapper {
    min-height: 100vh;
    position: relative;
    z-index: 2; /* Below .sticky-container */
}


.approach-section-wrapper:last-child {
    border-bottom: none;
    height: 90vh;
    overflow: hidden;
}

.approach-content {
    display: flex;
    padding: 0; /* Adjusted from padding: 0; to ensure consistency */
    position: relative;
    margin-left: 16.7%; /* Default margin for the sticky number indicator */
    height: 100vh;
    overflow: hidden;
}


/* When sticky navigation is pinned, restore left margin for first section's content on DESKTOP */
html.sticky-nav-is-pinned .approach-section-wrapper.first-section-visible .approach-content {
    margin-left: 16.7%;
    transition: margin-left 0.3s ease-out; /* Smooth transition for the margin change */
}

.col-approach-image {
    flex: 1.5;
    padding: 1.875rem; /* 30px */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-top: 1px solid #E1E1E1;
    /* border-bottom: 1px solid #E1E1E1; */
    /* border-left is covered by approach-number-indicator's right border */
    /* border-right is effectively the left border of col-approach-text or screen edge if text col is not there */
    background-color: #ededed;
    height: 100%;
}

.approach-content .col-approach-text {
    flex: 1;
    padding: 1.875rem; /* 30px */
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid #E1E1E1;
    border-bottom: none;
    border-right: none; /* Removed screen edge border */
    /* border-left is effectively the right border of col-approach-image */
    background-color: #ededed;
    height: 100%;
}

.approach-label {
    font-family: 'Satoshi', sans-serif;
    font-weight: 500;
    font-size: 0.875rem; /* 14px */
    line-height: 140%;
    letter-spacing: 0%;
    color: #333;
    margin-bottom: auto;
}

.approach-numbering {
    display: flex;
    align-items: baseline;
}

.mobile-approach-numbering {
    display: none; /* Hidden by default, shown only on mobile */
}

.approach-number-large-blue {
    font-family: 'Satoshi', sans-serif;
    font-weight: 500;
    font-size: 1.875rem; /* 40px  */
    line-height: 110%;
    letter-spacing: 0%;
    color: #0889F1;
    will-change: opacity, transform;
    transition: opacity 0.3s ease;
}

.approach-number-small-black {
    font-family: 'Satoshi', sans-serif;
    font-weight: 500;
    font-size: 0.875rem; /* 14px */
    line-height: 140%;
    letter-spacing: 0%;
    color: #000;
}

.step-label-blue {
    font-family: 'Satoshi', sans-serif;
    font-weight: 500;
    font-size: 0.875rem; /* 14px */
    line-height: 140%;
    letter-spacing: 0%;
    color: #0889F1;
    margin-bottom: 0.625rem; /* 10px */
    visibility: hidden;
    opacity: 0;
    transform: translateY(1.25rem); /* 20px */
    transition: all 0.5s ease;
}

.approach-section-title {
    font-family: 'Satoshi', sans-serif;
    font-weight: 500;
    font-size: 1.875rem; /* 30px */
    line-height: 110%;
    letter-spacing: 0%;
    color: #000;
    margin-bottom: 2.5rem; /* 40px */
    margin-top: 0.625rem; /* 10px */
    visibility: hidden;
    opacity: 0;
    transform: translateY(1.25rem); /* 20px */
    transition: all 0.5s ease;
}

.approach-description-text {
    font-family: 'Satoshi', sans-serif;
    font-weight: 400;
    font-size: 0.875rem; /* 14px */
    line-height: 140%;
    letter-spacing: 0%;
    color: #333;
    visibility: hidden;
    opacity: 0;
    transform: translateY(1.25rem); /* 20px */
    transition: all 0.5s ease;
}

.image-section img {
    max-width: 100%;
    height: auto;
    visibility: hidden;
    opacity: 0;
    transform: translateY(1.25rem) scale(0.95); /* 20px */
    transition: all 0.5s ease;
    max-height: 100vh;
    object-fit: contain;
}

/* Special rule for first section positioning only */
.approach-section-wrapper.first-section-visible {
    /* Only positioning properties, no visibility changes */
}

.approach-section-wrapper.first-section-visible .col-approach-image{
    border-top: 1px solid #E1E1E1;
    margin-top: 1.875rem; /* 30px */
}

.approach-section-wrapper.first-section-visible .col-approach-text{
    border-top: 1px solid #E1E1E1; /* Restored top border */
    margin-top: 1.875rem; /* 30px */
}

/* .approach-section-wrapper:last-child .col-approach-image{
    border-bottom: 1px solid #E1E1E1;
    padding-bottom: 30px;
} */

.approach-section-wrapper:last-child .col-approach-image, .approach-section-wrapper:last-child .col-approach-text{
    border-bottom: none;
}

/* .approach-section-wrapper:last-child .approach-content{
    height: 95.1vh;
} */

/* Footer Styles */
#llabs footer {
    background-color: #000000;
    color: #ffffff;
    padding: 3.125rem 0 2.5rem; /* 50px 0 40px */
    font-family: 'Satoshi', sans-serif;
}

.footer-sidebar {
    display: flex;
    align-items: flex-start; /* Align to top */
    padding-top: 0.625rem; /* 10px */
}

.footer-get-in-touch {
    font-family: 'Satoshi', sans-serif;
    font-weight: 500;
    font-size: 0.75rem; /* 12px */
    line-height: 140%;
    letter-spacing: 0%;
    color: #FFFFFF; /* White text */
    white-space: nowrap;
    padding-left: 1.875rem;
}

#llabs .footer-main {
    padding-left: 2.5rem; /* 40px */
    border-left: 1px solid #333333;
}

.footer-title {
    font-family: 'Satoshi', sans-serif;
    font-weight: 500;
    font-size: 2.5rem; /* 40px */
    line-height: 110%;
    letter-spacing: 0%;
    color: #FFFFFF;
    margin-bottom: 2.5rem; /* 40px */
}

.footer-content-row {
    border-bottom: 1px solid #333333;
    padding-top: 1.875rem; /* 30px */
    padding-bottom: 1.875rem; /* 30px */
    margin-bottom: 1.875rem; /* 30px */
}


.footer-heading {
    font-family: 'Satoshi', sans-serif;
    font-weight: 500;
    font-size: 1rem; /* 16px */
    line-height: 110%;
    letter-spacing: 0%;
    color: #FFFFFF;
    margin-bottom: 1.25rem; /* 20px */
    display: flex;
    align-items: center;
    border-bottom: 1px solid #333333;
    padding-bottom: 1.25rem; /* 20px */
}

.footer-heading svg {
    margin-right: 0.625rem; /* 10px */
}

.footer-heading a {
    color: #FFFFFF;
    text-decoration: none;
}

.footer-text {
    font-family: 'Satoshi', sans-serif;
    font-weight: 400;
    font-size: 0.875rem; /* 14px */
    line-height: 140%;
    letter-spacing: 0%;
    color: #A0A0A0;
}

.footer-text strong {
    color: #FFFFFF; 
    font-weight: 500;
}

.footer-text a {
    color: #A0A0A0;
    text-decoration: none;
}

.footer-text a:hover {
    color: #FFFFFF;
    text-decoration: underline;
}

.footer-address-columns {
    display: flex;
    gap: 1.875rem; /* 30px */
}

.footer-address {
    flex: 1;
}

.footer-bottom-bar {
    padding-top: 1.875rem; /* 30px */
}

.copyright-text {
    font-family: 'Satoshi', sans-serif;
    font-weight: 400;
    font-size: 0.875rem; /* 14px */
    line-height: 140%;
    letter-spacing: 0%;
    color: #A0A0A0;
}

.footer-credits {
    text-align: right;
}

.footer-icon {
    width: 1rem; /* 16px */
    height: 1rem; /* 16px */
    margin-right: 0.3125rem; /* 5px */
}

/* Ensure Pico link styles don't override footer link styles */
footer a,
footer a:visited {
    color: #A0A0A0;
}

footer a:hover {
    color: #FFFFFF;
}

/* Specific style for LinkedIn link */
.footer-column a[href="#"] {
    color: #FFFFFF;
    font-weight: 500;
}

.footer-heading svg path[fill="#1A98FE"] {
    fill: white;
}

.footer-column .social-media-icon svg path {
    fill: white !important;
}

/* Team Section Styles */
.team-section {
    padding: 3.75rem 0; /* 60px 0 */
    background-color: #ededed;
}

/* Make the container full-width for team-section */
.team-section .container {
    max-width: none;
    padding-left: 0; /* Ensure no container padding */
    padding-right: 0; /* Ensure no container padding */
}

.team-header {
    padding: 2.5rem; /* 40px */
    max-width: 100%;
    border-bottom: 1px solid #E1E1E1;
    margin-top: 1rem;
}

main .col-team-nav {
    border: 1px solid #E1E1E1;
    border-left: none; /* Removed screen edge border */
    padding: 1.875rem; /* 30px */
    display: flex;
    flex-direction: column;
    /* background-color: #ffffff; */
}

.team-label {
    font-family: 'Satoshi', sans-serif;
    font-weight: 500;
    font-size: 0.875rem; /* 14px */
    line-height: 140%;
    letter-spacing: 0%;
    color: #333;
}

.team-section .col-team-members {
    border-top: 1px solid #E1E1E1;
    border-right: none; /* Removed screen edge border */
    /* background-color: #ffffff; */
    padding-left: 0;
    padding-right: 0;
}

.team-member {
    border-top: none; /* Top border is handled by col-team-members or not needed */
    border-bottom: 1px solid #E1E1E1; /* Kept internal border */
    padding: 2.5rem 1.875rem; /* 40px 30px - Added horizontal padding for content */
}

.team-member:first-child {
    border-top: none;
}

.team-member:last-of-type {
    border-bottom: none;
}

.team-member-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.team-member-name {
    font-family: 'Satoshi', sans-serif;
    font-weight: 500;
    font-size: 2.5rem; /* 40px */
    line-height: 110%;
    letter-spacing: 0%;
    color: #000;
    margin: 0;
    transition: color 0.3s ease; /* Smooth color transition */
}

/* Style for active team member name */
.team-member.active .team-member-name {
    color: #0889F1;
}

.expand-icon {
    color: #0889F1;
}

.expand-icon svg {
    transition: transform 0.3s ease;
}

.team-member-content {
    display: flex;
    margin-top: 2.5rem; /* 40px */
    gap: 2.5rem; /* 40px */
    overflow: hidden;
    /* Remove transition since GSAP will handle this */
    will-change: height, opacity;
    position: relative; /* Added for better position control */
}

/* Add specific style to prevent content from showing during animation */
.team-member:not(.active) .team-member-content {
    clip-path: inset(0 0 0 0); /* Ensures content is cleanly cut during animation */
}

.team-member-image {
    width: 15rem; /* 240px */
    height: 17.3125rem; /* 277px */
    background-color: #f5f5f5;
    flex-shrink: 0;
}

.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member-details {
    flex-grow: 1;
}

.team-member-title {
    font-family: 'Satoshi', sans-serif;
    font-weight: 500;
    font-size: 1.125rem; /* 18px */
    line-height: 140%;
    letter-spacing: 0%;
    color: #000;
    margin-bottom: 1.25rem; /* 20px */
}

.team-member-bio {
    font-family: 'Satoshi', sans-serif;
    font-weight: 400;
    font-size: 0.875rem; /* 14px */
    line-height: 140%;
    letter-spacing: 0%;
    color: #333;
    margin-bottom: 1.25rem; /* 20px */
}

.team-member-linkedin {
    font-family: 'Satoshi', sans-serif;
    font-weight: 500;
    font-size: 0.875rem; /* 14px */
    color: #000;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.3125rem; /* 5px */
    margin-bottom: 2.5rem; /* 40px */
}

.team-member-experience {
    margin-top: 1.25rem; /* 20px */
}

.experience-label {
    font-family: 'Satoshi', sans-serif;
    font-weight: 500;
    font-size: 0.875rem; /* 14px */
    color: #000;
    margin-bottom: 1.25rem; /* 20px */
}

.experience-items {
    display: flex;
    gap: 1.25rem; /* 20px */
    flex-wrap: wrap;
}

.experience-item {
    display: flex;
    align-items: center;
    gap: 0.625rem; /* 10px */
}

.experience-logo {
    width: 2.5rem; /* 40px */
    height: 2.5rem; /* 40px */
    border-radius: 50%;
    overflow: hidden;
    background-color: #f5f5f5;
}

.experience-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-details {
    font-family: 'Satoshi', sans-serif;
}

.experience-company {
    font-weight: 500;
    font-size: 0.875rem; /* 14px */
    line-height: 140%;
    color: #000;
    margin: 0;
}

.experience-role {
    font-weight: 400;
    font-size: 0.75rem; /* 12px */
    line-height: 140%;
    color: #666;
    margin: 0;
}

.investors-section {
    margin-top: 0;
    padding: 2.5rem 1.875rem; /* 40px 30px - Added horizontal padding for content */
    /* padding-top: 2.5rem; */ /* Covered by shorthand */
    /* padding-bottom: 2.5rem; */ /* Covered by shorthand */
    border-bottom: 1px solid #E1E1E1; /* Kept internal border */
}

.investors-label {
    font-family: 'Satoshi', sans-serif;
    font-weight: 500;
    font-size: 0.875rem; /* 14px */
    color: #000;
    margin-bottom: 1.25rem; /* 20px */
}

.investor-logos {
    display: flex;
    gap: 2.5rem; /* 40px */
}

.investor-logo {
    display: flex;
    align-items: center;
    gap: 0.625rem; /* 10px */
}

.investor-logo img {
    width: 2.5rem; /* 40px */
    height: 2.5rem; /* 40px */
    border-radius: 50%;
    background-color: #f5f5f5;
}

.investor-name {
    font-family: 'Satoshi', sans-serif;
    font-weight: 500;
    font-size: 0.875rem; /* 14px */
    color: #000;
    margin: 0;
}

.investor-name a {
    color: #000;
    text-decoration: none;
}


.arrow-icon {
    width: 1rem; /* 16px */
    height: 1rem; /* 16px */
}

/* Responsive styles */
@media (max-width: 768px) {
    /* Team Section */
    .team-header {
        max-width: 100%;
    }
    
    .col-team-nav {
        border-bottom: none;
        padding-bottom: 0;
    }
    
    .col-team-members {
        border-top: none;
    }
    
    .team-member-name {
        font-size: 2.5rem; /* 40px */
    }
    
    .team-member-content {
        flex-direction: column;
    }
    
    .team-member-image {
        width: 15rem; /* 240px */
        height: 15.625rem; /* 250px */
    }
    
    .experience-items {
        flex-direction: column;
        gap: 0.9375rem; /* 15px */
    }
    
    .investor-logos {
        flex-direction: column;
        gap: 1.25rem; /* 20px */
    }
    
    /* Hero Section */
    .hero h1 {
        font-size: 3.125rem; /* 50px */
    }
    
    /* Approach ScrollyTelling for Mobile */
    .approach-number-indicator {
        display: none;
    }
    
    .mobile-approach-numbering {
        display: flex;
        align-items: baseline;
        /* margin-bottom: 1.25rem;  */
        border-top: 1px solid #E1E1E1;
        border-bottom: 1px solid #E1E1E1;
        /* border-left: none; */ /* Should be handled by parent full width */
        /* border-right: none; */ /* Should be handled by parent full width */
        padding: 2.5rem; /* 40px */
    }
    
    .approach-content {
        flex-direction: column;
        margin-left: 0;
        height: auto;
        min-height: auto;
        padding-top: 0;
    }

    .approach-section-wrapper:last-child {
        border-bottom: none; /* Last section no bottom border */
        height: auto; /* Restore full height on mobile*/
    }
    
    .approach-section-wrapper {
        min-height: auto;
        height: auto;
        /* margin-bottom: 30px; */
        border-bottom: 1px solid #E1E1E1; /* Kept for separation between stacked sections */
        /* border-left: none; */ /* Should be handled by parent full width */
        /* border-right: none; */ /* Should be handled by parent full width */
        transform: none !important; /* Reset any transforms on mobile */
    }
    
    .sticky-container {
        position: relative;
        height: auto;
    }
    
    .col-approach-image, 
    .col-approach-text {
        width: 100%;
        border: 1px solid #E1E1E1; /* Re-apply general border */
        border-left: none; /* Remove side borders for full width feel */
        border-right: none; /* Remove side borders for full width feel */
        /* border-top: none; */ /* Top border can exist for separation if not first element */
        padding: 1.25rem; /* 20px */
    }
    
    /* Ensure first stacked element doesn't have unnecessary top border */
    .approach-content > .col-approach-image:first-child,
    .approach-content > .col-approach-text:first-child {
        border-top: none;
    }

    .col-approach-image {
        min-height: 18.75rem; /* 300px */
    }
    
    .step-label-blue,
    .approach-section-title,
    .approach-description-text,
    .image-section img {
        visibility: visible !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

/* Splash Screen Styles */
#splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0889F1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
    pointer-events: auto;
}

#splash-screen img {
    max-width: 6.25rem; /* 100px */
    height: auto;
}

#splash-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}