/* --- 1. CORE THEME & COMPONENT STYLES --- */
:root {
    --brand-green-dark: #1e4620;
    --brand-green-accent: #2a9d8f;
    --brand-green-mid: #81c784;
    --brand-green-light: #e8f5e9;
    --glow-color: rgba(129, 199, 132, 0.5); /* Consistent glow color */
    --text-on-dark: #fbfdfb;
    --text-primary: #1a3b1a;
    --text-secondary: #36533c;
    --text-on-light: #1a1a1a; /* Dark text for light backgrounds */
    --bg-light: #fbfdfb; /* Standard light background for the page content */
    --border-color: #e0e6e2;
    --animation-duration: 0.6s;
    /* JS-driven variables for interactivity (hero, pillar cards, accordion) */
    --mouse-x: 50%;
    --mouse-y: 50%;
    --x: 50%; /* For pillar card and accordion item glow */
    --y: 50%; /* For pillar card and accordion item glow */
}

body {
    font-family: 'Manrope', sans-serif;
    background-color: #0a100a; /* Dark background for the overall page, consistent with hero */
    color: var(--text-primary); /* Default text color, sections will override */
    margin: 0;
    overflow-x: hidden; /* Prevent horizontal scrolling */
    line-height: 1.6;
}

.font-playfair {
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.02em;
}

/* --- Base Button Styles (Standardized) --- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 2.5rem; /* Standardized to 2.5rem to match our-process.php CTA */
    padding: 1rem 2.25rem;
    border-radius: 0;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    font-size: 1rem;
    color: #fff;
    background-image: linear-gradient(110deg, var(--brand-green-accent) 0%, var(--brand-green-mid) 100%);
    box-shadow: 0 10px 30px -5px rgba(42, 157, 143, 0.4), 0 0 15px var(--glow-color) inset;
    border: none;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--animation-duration) cubic-bezier(0.2, 0.8, 0.2, 1);
    background-size: 250% auto;
    position: relative;
    overflow: hidden;
    outline: none;
}

.btn-primary:hover, .btn-primary:focus {
    background-position: right center;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 18px 45px -8px rgba(42, 157, 143, 0.5), 0 0 20px var(--glow-color) inset;
    outline: 2px solid var(--brand-green-accent);
    outline-offset: 2px;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.btn-primary:hover::before, .btn-primary:focus::before {
    left: 100%;
}

.btn-arrow {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.btn-primary:hover .btn-arrow {
    transform: translateX(5px);
}

/* --- Section Divider --- */
.section-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, var(--brand-green-accent) 0%, var(--brand-green-mid) 50%, var(--brand-green-accent) 100%);
    margin: 0 auto;
    box-shadow: 0 0 10px var(--glow-color);
    border-radius: 0;
    border: none;
}

/* --- 2. INVESTORS HERO SECTION (#investors-hero-section) --- */
#investors-hero-section {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    perspective: 1200px; /* For 3D parallax effects */
    background-color: var(--brand-green-dark); /* Explicit dark background for the hero section */
    box-sizing: border-box; /* Include padding in height */
    position: relative; /* Ensure z-index works for layers */
}

/* --- 3. DESKTOP: INTERACTIVE PANELS LAYOUT --- */
@media (min-width: 769px) {
    #investors-hero-section {
        display: flex;
    }
    .hero-panel {
        position: relative;
        flex-grow: 1;
        height: 100%; /* Ensures panels take full height of #investors-hero-section */
        overflow: hidden;
        cursor: pointer;
        transition: flex-grow 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        transform-style: preserve-3d; /* Enable 3D space for children */
    }
    .hero-panel.active {
        flex-grow: 12;
    }
    .panel-label {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translateX(-50%) translateY(-50%) rotate(90deg) translateZ(20px);
        z-index: 10;
        color: rgba(255, 255, 255, 0.8);
        font-family: 'Manrope', sans-serif;
        font-weight: 700;
        font-size: 1.5rem;
        text-transform: uppercase;
        letter-spacing: 2px;
        white-space: nowrap;
        transition: opacity 0.5s ease, transform 0.5s ease;
        text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    }
    .hero-panel.active .panel-label {
        opacity: 0;
        transform: translateX(-50%) translateY(-50%) rotate(90deg) translateZ(0px);
    }
}

/* --- 4. PARALLAX BACKGROUND LAYERS (Inside each panel) --- */
.parallax-wrapper {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    transform-style: preserve-3d;
}
.hero-parallax-layer {
    position: absolute;
    top: -5%; left: -5%;
    width: 110%; height: 110%;
    background-size: cover;
    background-position: center;
    transition: transform 0.2s cubic-bezier(0.1, 0.8, 0.3, 1);
}
.layer-base {
    filter: brightness(0.5) contrast(1.1);
    transform: translateZ(-200px) scale(1.5);
}
.layer-grid {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cdefs%3E%3Cpattern id='p' width='100' height='100' patternUnits='userSpaceOnUse'%3E%3Cpath d='M100 0H0v100' fill='none' stroke='%2381c784' stroke-width='0.5'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23p)'/%3E%3C/svg%3E");
    background-size: 100px 100px;
    opacity: 0;
    mix-blend-mode: screen;
    transform: translateZ(-50px) scale(1.2);
    transition: opacity 0.8s ease-out;
}
.hero-panel.active .layer-grid {
    opacity: 0.1;
}
.layer-overlay {
    background: radial-gradient(circle at 50% 50%, transparent 40%, rgba(30, 70, 32, 0.8) 80%);
    z-index: 2;
}
.layer-glow {
    background: radial-gradient(circle at var(--mouse-x) var(--mouse-y), rgba(129, 199, 132, 0.2) 0%, transparent 40%);
    mix-blend-mode: screen;
    z-index: 3;
    opacity: 0;
    transition: opacity 0.8s ease-out;
}
.hero-panel.active .layer-glow {
    opacity: 1;
}

/* --- 5. CONTENT & ANIMATIONS (Hero Section) --- */
.panel-content {
    position: absolute;
    bottom: 8%; left: 5%; right: 5%;
    z-index: 5;
    color: #fff;
    padding: 2rem;
    opacity: 0;
    transform: translateY(40px) translateZ(50px);
    transition: opacity 0.6s ease-out 0.4s, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.4s;
}
.hero-panel.active .panel-content {
    opacity: 1;
    transform: translateY(0) translateZ(50px);
}
.hero-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: clamp(2.2rem, 5.5vw, 4rem);
    line-height: 1.1;
    margin: 0 0 1.5rem 0;
    text-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
}
.hero-heading-line {
    display: block;
    overflow: hidden;
}
.hero-heading-line span {
    display: inline-block;
    transform: translateY(110%);
    opacity: 0;
    transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 1.2s cubic-bezier(0.5, 1, 0.89, 1);
}
/* Staggered animation for title lines */
.hero-panel.active .hero-heading-line:nth-child(1) span { transition-delay: 0.2s; }
.hero-panel.active .hero-heading-line:nth-child(2) span { transition-delay: 0.4s; }
.hero-panel.active .hero-heading-line span {
    transform: translateY(0);
    opacity: 1;
}
.hero-subtitle {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 1.25rem;
    max-width: 600px;
    line-height: 1.7;
    color: var(--brand-green-light);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out 0.8s, transform 1s ease-out 0.8s;
}
.hero-panel.active .hero-subtitle {
    opacity: 1;
    transform: translateY(0);
}
.hero-panel.active .btn-primary {
    opacity: 1;
    transform: translateY(0);
}

/* --- 6. SCROLL INDICATOR --- */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-decoration: none;
    opacity: 0;
    animation: fadeInScroll 2s ease-out 2s forwards;
}
.scroll-indicator .mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    position: relative;
}
.scroll-indicator .scroller {
    width: 4px;
    height: 8px;
    background-color: #fff;
    border-radius: 2px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-anim 2s infinite;
}
@keyframes scroll-anim { 0% { top: 8px; opacity: 1; } 100% { top: 20px; opacity: 0; } }
@keyframes fadeInScroll { to { opacity: 1; } }

/* --- 7. MOBILE: SLIDER LAYOUT --- */
@media (max-width: 768px) {
    #investors-hero-section {
        position: relative;
        padding-top: 0;
    }
    .hero-panel {
        position: absolute;
        top: 0; left: 0;
        width: 100%; height: 100%;
        opacity: 0;
        transition: opacity 1s ease-in-out, z-index 1s step-end;
        z-index: 1;
    }
    .hero-panel.active {
        opacity: 1;
        z-index: 2;
        transition: opacity 1s ease-in-out, z-index 1s step-start;
    }
    .panel-label { display: none; }
    .parallax-wrapper { perspective: none; }
    .hero-parallax-layer { transform: none !important; }
    .layer-base {
        animation: kenburns-mobile 12s ease-out infinite alternate;
    }
    .panel-content {
        text-align: center;
        bottom: 15%;
        transform: translateY(20px) translateZ(0);
    }
    .hero-panel.active .panel-content {
         animation: fadeInUp-mobile 1s ease-out 0.5s forwards;
    }
    .hero-subtitle { font-size: 1.1rem; margin-left: auto; margin-right: auto; }
    .mobile-slider-nav {
        position: absolute;
        bottom: 40px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
        display: flex;
        gap: 12px;
    }
    .slider-dot {
        width: 12px;
        height: 12px;
        background-color: rgba(255, 255, 255, 0.4);
        border-radius: 50%;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    .slider-dot.active {
        background-color: #fff;
        transform: scale(1.2);
    }
    .scroll-indicator { display: none; }
    @keyframes kenburns-mobile {
        from { transform: scale(1.05); }
        to { transform: scale(1.15); }
    }
    @keyframes fadeInUp-mobile {
        to { opacity: 1; transform: translateY(0); }
    }
}

/* --- 8. ACCESSIBILITY & REDUCED MOTION (Hero Section) --- */
@media (prefers-reduced-motion: reduce) {
    .hero-panel, .hero-parallax-layer, .panel-content, .hero-heading-line span, .hero-subtitle, .btn-primary, .scroll-indicator .scroller {
        transition: none !important;
        animation: none !important;
    }
}

/* --- INVESTMENT PHILOSOPHY SECTION STYLES --- */
#investment-philosophy-section {
    padding: 6rem 2rem;
    background-color: #ffffff; /* Crisp white background */
    position: relative;
    overflow: hidden;
}

/* Subtle background pattern for visual texture */
#investment-philosophy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23e8f5e9' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 0;
}

.philosophy-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.philosophy-header {
    max-width: 800px;
    margin: 0 auto 4rem auto;
}

.philosophy-eyebrow {
    color: var(--brand-green-accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.philosophy-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2.75rem; /* Standardized to 2.75rem for desktop */
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    margin: 0 0 0.5rem 0;
}

.philosophy-accent {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-green-mid) 0%, var(--brand-green-accent) 100%);
    margin: 1rem auto 1.5rem auto;
    border-radius: 6px;
    box-shadow: 0 0 15px var(--glow-color);
}

.philosophy-hook {
    font-size: 1.25rem; /* Desktop size */
    line-height: 1.75;
    color: var(--text-secondary);
}

/* --- Pillars Grid --- */
.philosophy-pillars-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr); /* Mobile-first: single column */
    gap: 2rem; /* Spacing between cards */
}

@media (min-width: 768px) {
    .philosophy-pillars-grid {
        grid-template-columns: repeat(3, 1fr); /* Tablet and Desktop: three columns */
    }
}

/* --- Pillar Card Styling --- */
.pillar-card {
    position: relative;
    aspect-ratio: 4 / 5; /* Maintain 4:5 aspect ratio for consistent card shape */
    border-radius: 0;
    overflow: hidden;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    box-shadow: 0 20px 50px -20px rgba(30, 70, 32, 0.4);
    transition: transform var(--animation-duration) cubic-bezier(0.2, 0.8, 0.2, 1);
}

.pillar-card:hover {
    transform: scale(1.05);
}

.pillar-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--animation-duration) cubic-bezier(0.2, 0.8, 0.2, 1);
    z-index: 0;
}

.pillar-card:hover .pillar-background {
    transform: scale(1.1);
}

.pillar-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 25, 11, 0.9) 20%, rgba(10, 25, 11, 0.2) 60%, transparent 100%);
    z-index: 1;
    transition: background var(--animation-duration) ease;
}

.pillar-card:hover .pillar-overlay {
     background: linear-gradient(to top, rgba(10, 25, 11, 0.95) 30%, rgba(10, 25, 11, 0.1) 70%, transparent 100%);
}

.pillar-content {
    position: relative;
    z-index: 2;
    text-align: left;
}

/* Themed Icon Wrapper Styling */
.pillar-icon-wrapper {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ffffff 30%, var(--brand-green-light) 100%);
    box-shadow: 0 8px 30px rgba(42, 157, 143, 0.2);
    border: 2px solid #fff;
    transition: all var(--animation-duration) cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.pillar-card:hover .pillar-icon-wrapper {
    background: linear-gradient(135deg, var(--brand-green-accent), var(--brand-green-mid));
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 12px 40px rgba(42, 157, 143, 0.4);
}

.pillar-icon-inner {
    position: relative;
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    transform-style: preserve-3d;
    perspective: 800px;
    animation: pillar-icon-floating 3s infinite ease-in-out;
}

.pillar-icon-base, .pillar-icon-highlight, .pillar-icon-detail, .pillar-icon-glow {
    position: absolute;
    width: 42px;
    height: 42px;
    transition: all var(--animation-duration) ease;
    color: var(--brand-green-accent);
}

/* Default visibility for icon layers */
.pillar-icon-base { opacity: 1; }
.pillar-icon-detail { opacity: 1; }
.pillar-icon-highlight { opacity: 0.6; filter: blur(0.5px); }
.pillar-icon-glow { opacity: 0; }

/* Icon color change on card hover */
.pillar-card:hover .pillar-icon-base,
.pillar-card:hover .pillar-icon-highlight,
.pillar-card:hover .pillar-icon-detail,
.pillar-card:hover .pillar-icon-glow {
    color: #fff;
}

/* Individual icon layer animations on card hover */
.pillar-card:hover .pillar-icon-highlight { opacity: 0.7; filter: blur(2px) brightness(1.2); transform: translateY(2px) scale(1); }
.pillar-card:hover .pillar-icon-detail { opacity: 1; transform: translateZ(5px) scale(1.05); animation: pillar-icon-rotate-slow 15s infinite linear; }
.pillar-card:hover .pillar-icon-glow { opacity: 0.6; filter: blur(5px); }
.pillar-card:hover .pillar-icon-base { animation: pillar-icon-pulse-glow 2s infinite ease-in-out; }

/* Keyframe animations for icons */
@keyframes pillar-icon-floating { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-3px) rotate(1.5deg); } }
@keyframes pillar-icon-pulse-glow { 0%, 100% { filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.4)); } 50% { filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.7)); } }
@keyframes pillar-icon-rotate-slow { 0% { transform: rotate(0deg) translateZ(5px) scale(1.05); } 100% { transform: rotate(360deg) translateZ(5px) scale(1.05); } }

.pillar-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 0.5rem 0;
    text-shadow: 0 2px 15px rgba(0,0,0,0.5);
}

.pillar-description {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transform: translateY(20px);
    transition: max-height 0.7s ease, opacity 0.7s ease, transform 0.7s ease;
}

.pillar-card:hover .pillar-description {
    opacity: 1;
    max-height: 200px;
    transform: translateY(0);
}

/* --- DATA-DRIVEN PERFORMANCE SECTION --- */
#data-performance-section {
    padding: 6rem 2rem;
    background-color: #ffffff; /* Explicit white background */
    position: relative;
    /* Removed overflow: hidden from here to allow sticky to work properly */
}

/* Abstract background visuals */
#data-performance-section::before, #data-performance-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    filter: blur(120px);
}
#data-performance-section::before {
    background: radial-gradient(circle, var(--glow-color) 0%, transparent 65%);
    width: 600px;
    height: 600px;
    top: -20%;
    left: -15%;
    opacity: 0.2;
}
#data-performance-section::after {
    background: radial-gradient(circle, var(--brand-green-accent) 0%, transparent 70%);
    width: 500px;
    height: 500px;
    bottom: -25%;
    right: -20%;
    opacity: 0.1;
}

.performance-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr; /* Mobile-first: single column */
    gap: 4rem;
    position: relative;
    z-index: 1;
}

/* Desktop: Two-column layout (40:60 ratio) */
@media (min-width: 1024px) {
    .performance-container {
        grid-template-columns: 2fr 3fr; /* Approximately 40% for narrative, 60% for viz */
        align-items: start; /* Align items to the start, important for sticky */
        /* Removed padding-top from here. Will manage alignment differently. */
        padding-top: 0;
    }
}

/* --- Narrative Content (Left Column) --- */
.performance-narrative {
    text-align: left; /* Default for desktop */
}

/* Desktop specific alignment for narrative content */
@media (min-width: 1024px) {
    .performance-narrative {
        text-align: left;
        position: sticky; /* Make it sticky */
        top: 80px; /* Adjusted to header height for sticky effect */
        align-self: start; /* Ensure it aligns to the start of its grid area */
        height: fit-content; /* Allow its height to be determined by its content */
        /* Removed margin-top */
        margin-top: 0;
    }
}

.performance-eyebrow {
    color: var(--brand-green-mid);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.performance-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2.75rem; /* Standardized to 2.75rem for desktop */
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    margin: 0 0 0.5rem 0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.performance-accent {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-green-mid) 0%, var(--brand-green-accent) 100%);
    margin: 1.5rem 0; /* Default for desktop */
    border-radius: 6px;
    box-shadow: 0 0 15px var(--glow-color);
}

/* Desktop specific alignment for accent */
@media (min-width: 1024px) {
    .performance-accent {
        margin-left: 0;
        margin-right: auto;
    }
}

.performance-hook {
    font-size: 1.25rem; /* Desktop size */
    line-height: 1.75;
    color: var(--text-secondary);
    opacity: 0.9;
    max-width: 500px;
}

/* Desktop specific alignment for hook */
@media (min-width: 1024px) {
    .performance-hook {
        margin-left: 0;
        margin-right: auto;
    }
}

/* --- Data Visualization (Right Column) --- */
.performance-viz {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    /* No padding-top here. Will rely on parent section padding. */
    padding-top: 0;
}

/* KPI Cards */
.kpi-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Default for larger screens */
    gap: 1.5rem;
}

.kpi-card {
    background: rgba(232, 245, 233, 0.5);
    border: 1px solid rgba(42, 157, 143, 0.4);
    border-radius: 0;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.kpi-card:hover, .kpi-card.active {
    background: rgba(232, 245, 233, 0.8);
    border-color: var(--brand-green-accent);
    transform: translateY(-8px);
    box-shadow: 0 15px 30px -10px rgba(0,0,0,0.15);
}

.kpi-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--brand-green-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.kpi-card.active::before {
    transform: scaleX(1);
}

.kpi-value {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.kpi-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    opacity: 0.8;
    margin-top: 0.25rem;
}

/* Main Chart Container */
.chart-container {
    background: rgba(232, 245, 233, 0.5);
    border: 1px solid rgba(42, 157, 143, 0.4);
    border-radius: 0;
    padding: 2rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.chart-container:hover {
    background: rgba(232, 245, 233, 0.8);
    border-color: var(--brand-green-accent);
    transform: translateY(-8px);
    box-shadow: 0 15px 30px -10px rgba(0,0,0,0.15);
}

#performanceChart {
    max-height: 100%;
    max-width: 100%;
}

/* --- INVESTMENT PROCESS SECTION --- */
#investment-process-section-v6 {
    padding: 6rem 2rem;
    background-color: #ffffff;
    overflow: visible; /* Ensure this section allows for scrolling content within it */
}

.process-container-v6 {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

@media (min-width: 992px) {
    .process-container-v6 {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
        align-items: start; /* Align grid items to the start */
    }
}

/* --- Sticky Header Panel (Left) --- */
.process-header-sticky-v6 {
    /* On desktop, this panel will become sticky */
}

@media (min-width: 992px) {
    .process-header-sticky-v6 {
        position: sticky;
        top: 8rem; /* Adjusted top value to match other sticky elements, assuming a header */
        height: fit-content;
        align-self: start;
    }
}

.process-eyebrow-v6 {
    color: var(--brand-green-accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.process-heading-v6 {
    font-family: 'Playfair Display', serif;
    font-size: 2.75rem; /* Standardized to 2.75rem for desktop */
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    margin: 0 0 0.5rem 0;
}

.process-accent-v6 {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-green-mid) 0%, var(--brand-green-accent) 100%);
    margin: 1.5rem 0;
    border-radius: 6px;
    box-shadow: 0 0 15px var(--glow-color);
}

.process-hook-v6 {
    font-size: 1.25rem; /* Desktop size */
    line-height: 1.75;
    color: var(--text-secondary);
}

/* --- Scrolling Features Panel (Right) --- */
.process-features-v6 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* New Accordion Item Styles */
.accordion-item-v6 {
    background: rgba(255, 255, 255, 0.6);
    border-radius: 0;
    border: 1.5px solid var(--border-color);
    box-shadow: 0 10px 40px -10px rgba(42, 157, 143, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    overflow: hidden;
    position: relative;
}

/* Aurora Glow Effect for accordion items */
.accordion-item-v6::before {
    content: '';
    position: absolute;
    top: var(--y, 50%);
    left: var(--x, 50%);
    transform: translate(-50%, -50%) scale(0);
    width: 300px;
    height: 300px;
    background-image: radial-gradient(circle, var(--glow-color) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: transform 0.8s ease, opacity 0.8s ease;
    z-index: 0;
    pointer-events: none;
}

.accordion-item-v6:hover::before {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.accordion-item-v6:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px -15px rgba(42, 157, 143, 0.2);
    border-color: var(--brand-green-mid);
}

.accordion-header-v6 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background-color 0.3s ease;
    position: relative;
    z-index: 1;
}

.accordion-item-v6.active .accordion-header-v6 {
    background-color: var(--brand-green-light);
    border-left: 5px solid var(--brand-green-accent);
    padding-left: calc(2rem - 5px);
}

/* Enhanced Feature Phase Number */
.feature-phase {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    background-image: linear-gradient(135deg, var(--brand-green-accent) 0%, var(--brand-green-mid) 100%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 1.5rem;
    box-shadow: 0 5px 15px rgba(42, 157, 143, 0.3);
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    border: 2px solid rgba(255,255,255,0.5);
}

.accordion-item-v6:hover .feature-phase,
.accordion-item-v6.active .feature-phase {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(42, 157, 143, 0.4);
    border-color: #fff;
}

.feature-title-wrapper {
    flex-grow: 1;
}

.feature-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

/* Accordion Indicator (Plus/Minus Icon) */
.accordion-indicator-v6 {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    color: var(--brand-green-accent);
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.accordion-item-v6.active .accordion-indicator-v6 {
    transform: rotate(45deg);
}

/* Accordion Content */
.accordion-content-v6 {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), padding 0.5s ease-out;
    padding: 0 2rem; /* Initial padding */
    position: relative;
    z-index: 1;
}

.accordion-item-v6.active .accordion-content-v6 {
    /* Adjusted padding to match header's effective padding-left and add top padding */
    padding: 1.5rem 2rem 2rem calc(2rem - 5px); /* Top, Right, Bottom, Left */
}

.feature-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.feature-outcomes {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
}

.feature-outcomes li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.feature-outcomes li:last-child {
    margin-bottom: 0;
}

/* Outcome Icon (SVG) */
.outcome-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--brand-green-accent);
    stroke-width: 2;
}

/* --- PORTFOLIO HIGHLIGHTS SECTION --- */
#portfolio-highlights-section {
    padding: 6rem 2rem;
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

/* Subtle background pattern */
#portfolio-highlights-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23e8f5e9' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 0;
}

.portfolio-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Section Header */
.portfolio-header {
    max-width: 900px;
    margin: 0 auto 4rem auto;
}

.portfolio-eyebrow {
    color: var(--brand-green-accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.portfolio-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2.75rem; /* Standardized to 2.75rem for desktop */
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    margin: 0 0 0.5rem 0;
}

.portfolio-accent {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-green-mid) 0%, var(--brand-green-accent) 100%);
    margin: 1rem auto 1.5rem auto;
    border-radius: 6px;
    box-shadow: 0 0 15px var(--glow-color);
}

.portfolio-hook {
    font-size: 1.25rem; /* Desktop size */
    line-height: 1.75;
    color: var(--text-secondary);
}

/* --- PORTFOLIO CTA CONTAINER --- */
.portfolio-cta-container {
    margin-top: 2rem;
    text-align: center;
}

/* --- FINAL CTA SECTION --- */
#investors-cta-section {
    padding: 6rem 2rem;
    background: linear-gradient(120deg, var(--brand-green-dark) 0%, #173a18 40%, var(--brand-green-accent) 100%), url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23FFFFFF' fill-opacity='0.08' fill-rule='evenodd'%3E%3Cpath d='M11 0h2v11h11v2H13v11H11V13H0v-2h11V0zm22 0h2v11h11v2H35v11h-2V13H22v-2h11V0zM55 0h2v11h11v2H57v11h-2V13H44v-2h11V0zM11 22h2v11h11v2H13v11H11V35H0v-2h11V22zm22 0h2v11h11v2H35v11h-2V35H22v-2h11V22zM55 22h2v11h11v2H57v11h-2V35H44v-2h11V22zM11 44h2v11h11v2H13v11H11V57H0v-2h11V44zm22 0h2v11h11v2H35v11h-2V57H22v-2h11V44zm22 0h2v11h11v2H57v11h-2V57H44v-2h11V44zM11 66h2v11h11v2H13v11H11V79H0v-2h11V66zm22 0h2v11h11v2H35v11h-2V79H22v-2h11V66zm22 0h2v11h11v2H57v11h-2V79H44v-2h11V66z'/%3E%3Cg%3E%3C/g%3E%3C/svg%3E");
    background-blend-mode: overlay;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 32px 0 rgba(26, 59, 26, 0.14);
}

/* Glowing orbs for background effect */
#investors-cta-section::before, #investors-cta-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    filter: blur(80px);
}
#investors-cta-section::before {
    background: radial-gradient(circle, var(--glow-color) 0%, transparent 65%);
    width: 500px;
    height: 500px;
    top: -150px;
    left: -200px;
    opacity: 0.7;
}
#investors-cta-section::after {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 65%);
    width: 400px;
    height: 400px;
    bottom: -120px;
    right: -180px;
    opacity: 0.6;
}

.cta-content-investors {
    position: relative;
    z-index: 1;
    max-width: 850px;
    margin: 0 auto;
}

.cta-heading-investors {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 2.75rem; /* Standardized to 2.75rem for desktop */
    letter-spacing: -0.02em;
    line-height: 1.2;
    text-shadow: 0 3px 20px rgba(10, 30, 10, 0.2);
    margin-bottom: 1.5rem;
    color: inherit;
}

.cta-subheading-investors {
    color: var(--brand-green-light);
    font-size: 1.25rem; /* Desktop size */
    max-width: 700px;
    margin: 0 auto 2.5rem auto;
    font-weight: 500;
    line-height: 1.6;
    text-shadow: 0 1.5px 10px rgba(20, 40, 20, 0.1);
}

/* --- ANIMATION & RESPONSIVE TWEAKS (General) --- */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s cubic-bezier(.2, .8, .2, 1), transform 1s cubic-bezier(.2, .8, 0.2, 1);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Media queries for responsiveness */
@media (max-width: 1023px) {
    #investment-philosophy-section, #data-performance-section, #portfolio-highlights-section, #investors-cta-section {
        padding: 4rem 1.5rem;
    }
    /* Standardized main heading font size for tablet/smaller desktop */
    .philosophy-heading, .performance-heading, .portfolio-heading, .cta-heading-investors, .process-heading-v6 {
        font-size: 2.25rem; /* Standardized to 2.25rem for tablet/smaller desktop */
    }
    /* Standardized hook/intro text font size for tablet/smaller desktop */
    .philosophy-hook, .performance-hook, .portfolio-hook, .cta-subheading-investors, .process-hook-v6 {
        font-size: 1.1rem; /* Standardized to 1.1rem for tablet/smaller desktop */
    }
    .performance-narrative {
        text-align: center;
    }
    .performance-accent {
        margin-left: auto;
        margin-right: auto;
    }
    .performance-hook {
        margin-left: auto;
        margin-right: auto;
    }
    .kpi-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .process-header-sticky-v6 { text-align: center; }
    .process-accent-v6 { margin-left: auto; margin-right: auto; }
    /* process-heading-v6 and process-hook-v6 are now handled by the general rules above */
    .accordion-header-v6 { padding: 1rem 1.5rem; }
    .feature-title { font-size: 1.5rem; }
    .accordion-content-v6 { padding: 0 1.5rem; }
    .accordion-item-v6.active .accordion-content-v6 { padding-bottom: 1.5rem; }
    .accordion-item-v6.active .accordion-header-v6 {
        padding-left: 1.5rem;
        border-left: none;
    }
}

@media (max-width: 991px) {
    .process-header-sticky-v6 {
        position: static; /* Disable sticky on smaller screens */
        top: auto;
        height: auto;
        align-self: auto;
    }
}

@media (max-width: 768px) {
    .philosophy-pillars-grid {
        grid-template-columns: 1fr;
    }
    .pillar-title {
        font-size: 1.5rem;
    }
    .pillar-icon-wrapper {
        width: 64px;
        height: 64px;
    }
    .pillar-icon-base, .pillar-icon-highlight, .pillar-icon-detail, .pillar-icon-glow {
        width: 36px;
        height: 36px;
    }
    .kpi-cards-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .kpi-card {
        padding: 1rem;
        min-height: 80px;
    }
    .kpi-value {
        font-size: 2rem;
    }
    .kpi-label {
        font-size: 0.75rem;
    }
    .chart-container {
        height: 280px;
        padding: 1rem;
    }
    /* Standardized CTA heading and subheading for mobile */
    .cta-heading-investors { font-size: 2rem; }
    .cta-subheading-investors { font-size: 1rem; }
    .btn-primary { padding: 0.8rem 1.8rem; font-size: 0.9rem; margin-top: 1.5rem; }
}

@media (max-width: 767px) {
    .portfolio-cta-container {
        margin-top: 1.5rem;
    }
}

@media (max-width: 480px) {
    /* Removed specific font-size overrides for performance-heading and performance-hook
       at 480px to ensure consistency with the 1023px breakpoint rule. */
    #data-performance-section {
        padding: 2rem 0.75rem;
    }
    /* The performance-heading and performance-hook will now inherit from 1023px breakpoint */
    .kpi-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    .kpi-card {
        padding: 0.75rem;
        min-height: 70px;
    }
    .kpi-value {
        font-size: 1.6rem;
    }
    .kpi-label {
        font-size: 0.7rem;
    }
    .chart-container {
        height: 250px;
    }
}

/* Accessibility: Reduced motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    .hero-panel, .hero-parallax-layer, .panel-content, .hero-heading-line span, .hero-subtitle, .btn-primary, .scroll-indicator .scroller,
    .pillar-icon-wrapper, .pillar-icon-inner, .pillar-icon-base, .pillar-icon-highlight, .pillar-icon-detail, .pillar-icon-glow,
    .pillar-card, .pillar-background, .pillar-overlay, .pillar-description,
    .accordion-item-v6, .accordion-header-v6, .accordion-indicator-v6, .accordion-content-v6, .accordion-item-v6::before, .feature-phase,
    .fade-in-up,
    #investors-cta-section::before, #investors-cta-section::after {
        transition: none !important;
        animation: none !important;
    }
}

.accordion-item-v6.active > .accordion-content-v6 {
    max-height: 1000px;
    padding: 1.5rem 2rem 2rem 2rem;
    transition: max-height 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), padding 0.5s;
}
