/* Point72-Inspired TCM Website Styles */

/* CSS Variables */
:root {
    --color-dark-bg: #0a0e13;
    --color-darker-bg: #060a0f;
    --color-medium-bg: #1a2128;
    --color-light-bg: #f5f7fa;
    --color-primary-blue: #1e40af;
    --color-accent-blue: #3b82f6;
    --color-text-primary: #ffffff;
    --color-text-secondary: #a1a9b8;
    --color-text-muted: #6b7280;
    --color-text-dark: #111827;
    --color-border-light: #e5e7eb;
    --color-border-dark: #374151;
    
    --font-family: 'Helvetica Neue', 'Arial', sans-serif;
    
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    --container-max-width: 1200px;
    --container-padding: 2rem;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--color-text-primary);
    background-color: var(--color-dark-bg);
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Particle Background */
#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
    pointer-events: none;
    opacity: 0.3;
    mix-blend-mode: screen;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    backdrop-filter: none;
    border-bottom: none;
    transition: transform 0.3s ease, background 0.3s ease, backdrop-filter 0.3s ease;
    will-change: transform;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 5%;
    min-height: 140px;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.brand-link {
    display: inline-flex;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.brand-link:hover {
    opacity: 0.8;
}

/* Desktop Logo */
.desktop-logo {
    display: block !important;
    height: 80px;
    width: auto;
    object-fit: contain;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Mobile Logo */
.mobile-logo {
    display: none !important;
    height: 50px;
    width: auto;
    object-fit: contain;
    visibility: hidden !important;
    opacity: 0 !important;
}

@media (max-width: 768px) {
    .nav {
        padding: 20px 5%;
        min-height: 80px;
    }
    
    /* Hide desktop logo on mobile - Safari safe */
    .desktop-logo {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        -webkit-transform: scale(0) !important;
        transform: scale(0) !important;
    }
    
    /* Show mobile logo on mobile - Safari safe */
    .mobile-logo {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        -webkit-transform: scale(1) !important;
        transform: scale(1) !important;
    }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    transition: color var(--transition-fast);
}

.nav-links a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.nav-cta {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
    padding: 0.5rem 1.5rem;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all var(--transition-fast);
    margin-left: 2rem;
}

.nav-cta:hover {
    background: #ffffff;
    color: #000000;
}


.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 3px;
    padding: 6px;
    margin-right: -6px;
    position: relative;
    z-index: 1001;
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--color-text-primary);
    transition: var(--transition-fast);
    border-radius: 1px;
    transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    font-family: var(--font-family);
    font-weight: 600;
    text-decoration: none;
    border: 2px solid transparent;
    transition: all var(--transition-medium);
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--color-text-primary);
    color: var(--color-dark-bg);
    border-color: var(--color-text-primary);
}

.btn-primary:hover {
    background: transparent;
    color: var(--color-text-primary);
}

.btn-outline {
    background: transparent;
    color: var(--color-text-secondary);
    border-color: var(--color-border-dark);
}

.btn-outline:hover {
    background: var(--color-medium-bg);
    color: var(--color-text-primary);
    border-color: var(--color-text-secondary);
}

.btn-accept {
    background: transparent;
    color: #1a1a1a;
    border: 1px solid #1a1a1a;
    padding: 0.75rem 2rem;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-transform: none;
}

.btn-accept:hover {
    background: #1a1a1a;
    color: #ffffff;
}

/* Hero Section - Point72 Inspired */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 5%;
    position: relative;
    background: url('../img/hero-background.jpg') center center/cover no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 1;
}

.hero-content {
    max-width: 700px;
    z-index: 20;
    position: relative;
}

.hero-title {
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    letter-spacing: -2px;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1.2s ease;
}

.hero-funds {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    animation: fadeInUp 1.4s ease;
}

.fund-item {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.fund-item:last-child {
    border-bottom: none;
}

.fund-name {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #ffffff;
    font-weight: 400;
    margin-bottom: 0.25rem;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.fund-description {
    font-size: clamp(0.875rem, 1.3vw, 0.95rem);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
    flex-wrap: wrap;
    animation: fadeInUp 1.8s ease;
}

/* Statistics Section */
.stats-section {
    background: var(--color-light-bg);
    color: var(--color-text-dark);
    padding: 8rem 0;
    text-align: center;
}

.stats-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -1px;
}

.stats-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    margin-bottom: 5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
    margin-top: 4rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: clamp(3rem, 6vw, 4rem);
    font-weight: 700;
    color: var(--color-text-dark);
    line-height: 1;
    margin-bottom: 1rem;
    letter-spacing: -2px;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.stat-description {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* Content Sections */
.content-section {
    padding: 8rem 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 3rem;
    letter-spacing: -0.5px;
    color: #1a1a1a;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.image-placeholder {
    height: 400px;
    background: var(--color-medium-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-secondary);
    font-size: 1.125rem;
    border: 2px dashed var(--color-border-dark);
}

/* News Section */
.news-section {
    background: var(--color-darker-bg);
    padding: 8rem 0;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.news-card {
    background: var(--color-medium-bg);
    padding: 2.5rem;
    transition: transform var(--transition-medium);
}

.news-card:hover {
    transform: translateY(-8px);
}

.news-date {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.news-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text-primary);
    line-height: 1.3;
    margin-bottom: 1rem;
}

.news-excerpt {
    font-size: 1rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.news-link {
    color: var(--color-primary-blue);
    font-weight: 500;
    text-decoration: none;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color var(--transition-fast);
}

.news-link:hover {
    color: var(--color-accent-blue);
}

/* Contact Section - Point72 Minimal */
.contact-section {
    background: #0a0e13;
    padding: 10rem 0;
}

.contact-content {
    max-width: 700px;
    padding-left: 5%;
    text-align: left;
}

.contact-intro {
    margin-bottom: 6rem;
}

.contact-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: #ffffff;
    margin: 0 0 2rem 0;
    letter-spacing: -0.5px;
}

.contact-divider {
    width: 60px;
    height: 1px;
    background: #ffffff;
    margin: 0;
    opacity: 0.3;
}

.contact-main {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
}

.contact-email-link {
    text-decoration: none;
    display: inline-block;
}

.contact-email-text {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: #ffffff;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.contact-email-link:hover .contact-email-text {
    color: rgba(255, 255, 255, 0.8);
}

.contact-subtitle {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
    letter-spacing: 0.5px;
    margin: 0;
    text-transform: uppercase;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .contact-section {
        padding: 8rem 0;
    }
    
    .contact-intro {
        margin-bottom: 4rem;
    }
}

/* Footer - Ultra Premium */
.footer {
    background: #faf9f7;
    padding: 4rem 0 3rem;
    color: #666666;
}

.footer-content {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-copyright {
    font-size: 0.875rem;
    color: #666666;
    margin: 0 0 0.5rem 0;
    font-weight: 400;
}

.footer-disclaimer {
    font-size: 0.75rem;
    color: #888888;
    margin: 0;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .footer-content {
        text-align: center;
    }
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-medium);
}

.modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow: hidden;
    color: var(--color-text-dark);
    transform: translateY(-50px);
    transition: transform var(--transition-medium);
}

.modal-overlay.show .modal-content {
    transform: translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-bottom: 1px solid var(--color-border-light);
}

.modal-header h3 {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--color-text-muted);
    line-height: 1;
    padding: 0;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: var(--color-text-dark);
}

.modal-body {
    padding: 2rem;
    max-height: 50vh;
    overflow-y: auto;
    line-height: 1.6;
}

.modal-body p {
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.modal-footer {
    padding: 2rem;
    border-top: 1px solid var(--color-border-light);
    text-align: center;
}



/* Mobile Logo Control */
.mobile-logo {
    display: none;
}

.desktop-logo {
    display: block;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    z-index: 9999;
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.show {
    display: block;
    opacity: 1;
    visibility: visible;
}

.mobile-menu-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10000;
}

.mobile-menu-close span {
    display: block;
    width: 24px;
    height: 2px;
    background: #ffffff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform-origin: center;
    transition: background 0.3s ease;
}

.mobile-menu-close span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-menu-close span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 2rem;
}

.mobile-menu-content a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 300;
    margin: 2rem 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
}

.mobile-menu-content a:hover {
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    :root {
        --container-padding: 1rem;
    }
    
    .header {
        background: transparent;
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 1000;
    }
    
    .nav {
        padding: 1rem 1.5rem;
        min-height: 70px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    /* Hide desktop logo, show BIGGER mobile logo */
    .desktop-logo {
        display: none !important;
    }
    
    .mobile-logo {
        display: block !important;
        height: 55px;
        width: auto;
        max-width: 350px;
    }
    
    .nav-links {
        display: none !important;
    }
    
    .nav-cta {
        display: none !important;
    }
    
    .nav-toggle {
        display: flex;
        flex-direction: column;
        background: transparent;
        border: none;
        padding: 8px;
        cursor: pointer;
        gap: 4px;
    }
    
    .nav-toggle span {
        display: block;
        width: 22px;
        height: 2px;
        background: #ffffff;
        transition: all 0.3s ease;
    }
    
    /* Hero Section Mobile Fix */
    .hero {
        padding-top: 70px;
    }
    
    .hero-content {
        /* No additional padding needed - hero section handles 5% padding */
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .content-section,
    .stats-section,
    .news-section {
        padding: 4rem 0;
    }
    
    .modal-content {
        width: 95%;
    }
    
    .modal-header,
    .modal-body,
    .modal-footer {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .mobile-logo {
        height: 45px;
        max-width: 280px;
    }
    
    .nav {
        padding: 0.75rem 1rem;
        min-height: 60px;
    }
    
    .brand-logo {
        height: 40px;
        max-width: 280px;
    }
    
    .modal-header,
    .modal-body,
    .modal-footer {
        padding: 1rem;
    }
    
    .modal-header h3 {
        font-size: 1.25rem;
    }
    
    .modal-body {
        max-height: 40vh;
    }
}

/* Smooth Scrolling Enhancements */
@media (prefers-reduced-motion: no-preference) {
    .stat-item,
    .news-card,
    .content-text {
        opacity: 0;
        transform: translateY(30px);
        animation: fadeInUp 0.8s ease forwards;
    }
    
    .stat-item:nth-child(2) { animation-delay: 0.2s; }
    .stat-item:nth-child(3) { animation-delay: 0.4s; }
    
    .news-card:nth-child(2) { animation-delay: 0.2s; }
    .news-card:nth-child(3) { animation-delay: 0.4s; }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Focus Styles for Accessibility */
a:focus,
button:focus {
    outline: 2px solid var(--color-accent-blue);
    outline-offset: 2px;
}

/* TAAFFEITE Specific Sections */

/* Discover Section */
/* About Section - Premium Cream Background */
.about-section {
    background: #faf9f7;
    color: #2d2d2d;
    padding: 10rem 0;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text.primary {
    font-size: clamp(1.5rem, 3vw, 2rem);
    line-height: 1.5;
    color: #1a1a1a;
    margin-bottom: 4rem;
    text-align: center;
    font-weight: 300;
    letter-spacing: -0.5px;
}

.about-text.secondary {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.6;
    color: #666666;
    margin-bottom: 4rem;
    text-align: center;
    font-weight: 300;
    letter-spacing: 0px;
}

.about-text.regulation {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    color: #888888;
    font-weight: 400;
    margin-bottom: 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Philosophy Section - Dark with Flowing Particles */
.philosophy-section {
    background: url('../img/flow-particles.jpg') center center/cover no-repeat;
    padding: 10rem 0;
    position: relative;
}

.philosophy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.philosophy-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.philosophy-text.primary {
    font-size: clamp(1.5rem, 3vw, 2rem);
    line-height: 1.5;
    color: #ffffff;
    margin-bottom: 4rem;
    text-align: center;
    font-weight: 300;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
}

.philosophy-text.secondary {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
    text-align: center;
    font-weight: 300;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Quote Section - Light with Wave Landscape */
.quote-section {
    background: url('../img/wave-landscape.jpg') center center/cover no-repeat;
    padding: 10rem 0;
    position: relative;
}

.quote-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    z-index: 1;
}

.quote-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.quote-text {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    line-height: 1.4;
    color: #1a1a1a;
    font-weight: 300;
    letter-spacing: -0.5px;
    font-style: italic;
    margin: 0;
    padding: 0;
    border: none;
    position: relative;
}

.quote-text::before {
    content: '"';
    font-size: 1.5em;
    color: #666666;
    position: absolute;
    left: -0.5em;
    top: -0.2em;
    font-style: normal;
}

.quote-text::after {
    content: '"';
    font-size: 1.5em;
    color: #666666;
    font-style: normal;
}

.section-description.centered {
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.discover-cta {
    margin-top: 3rem;
    text-align: center;
}

/* Principled Approach Section */
.principled-section {
    background: var(--color-dark-bg);
    padding: 8rem 0;
}

.principled-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.principled-pillars {
    margin: 4rem 0;
}

.pillar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.pillar-item {
    text-align: center;
    padding: 2rem;
    background: var(--color-medium-bg);
    transition: transform var(--transition-medium);
}

.pillar-item:hover {
    transform: translateY(-5px);
}

.pillar-item h4 {
    color: var(--color-text-primary);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.pillar-item p {
    color: var(--color-text-secondary);
    font-size: 0.875rem;
    line-height: 1.6;
}

.principled-cta {
    margin-top: 3rem;
    text-align: center;
}

/* Hedge Section */
.hedge-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23064e3b" width="1200" height="600"/><circle fill="%23065f46" cx="200" cy="150" r="80" opacity="0.3"/><circle fill="%23065f46" cx="800" cy="400" r="120" opacity="0.2"/><circle fill="%23047857" cx="1000" cy="200" r="60" opacity="0.4"/></svg>');
    background-size: cover;
    background-position: center;
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hedge-overlay {
    width: 100%;
    padding: 8rem 0;
}

.hedge-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.hedge-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-text-secondary);
    margin-bottom: 2rem;
}

.hedge-cta {
    margin-top: 3rem;
}

/* Accolades Section */
.accolades-section {
    background: var(--color-light-bg);
    color: var(--color-text-dark);
    padding: 8rem 0;
}

.accolades-content {
    max-width: 1000px;
    margin: 0 auto;
}

.accolades-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin: 4rem 0;
}

.accolade-item {
    padding: 2rem;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.accolade-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.accolade-item h4 {
    color: var(--color-primary-blue);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.accolade-item p {
    color: var(--color-text-muted);
    font-size: 0.875rem;
    line-height: 1.6;
}

.accolades-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Process Section */
.process-section {
    background: var(--color-darker-bg);
    padding: 8rem 0;
}

.process-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.process-steps {
    margin: 4rem 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--color-medium-bg);
    position: relative;
    transition: transform var(--transition-medium);
}

.process-step:hover {
    transform: translateY(-8px);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--color-primary-blue);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.process-step h4 {
    color: var(--color-text-primary);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.process-step p {
    color: var(--color-text-secondary);
    font-size: 0.875rem;
    line-height: 1.6;
}

.process-cta {
    margin-top: 3rem;
    text-align: center;
}

/* Updated Navigation Links */
.nav-links a[href="#strategies"]:hover,
.nav-links a[href="#process"]:hover {
    color: var(--color-text-primary);
}

/* Footer Contact Form */
.contact-form {
    margin-bottom: 2rem;
}

.footer-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-form input,
.footer-form textarea {
    background: var(--color-medium-bg);
    border: 1px solid var(--color-border-dark);
    color: var(--color-text-primary);
    padding: 0.75rem;
    font-family: var(--font-family);
    font-size: 0.875rem;
    transition: border-color var(--transition-fast);
}

.footer-form input:focus,
.footer-form textarea:focus {
    outline: none;
    border-color: var(--color-primary-blue);
}

.footer-form input::placeholder,
.footer-form textarea::placeholder {
    color: var(--color-text-secondary);
}

.footer-form button {
    align-self: flex-start;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
}

.contact-info {
    margin-top: 1.5rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.contact-info p:first-child {
    font-weight: 600;
    color: var(--color-text-primary);
}

/* Enhanced Responsive Design for New Sections */
@media (max-width: 768px) {
    .discover-section,
    .principled-section,
    .hedge-section,
    .accolades-section,
    .process-section {
        padding: 4rem 0;
    }
    
    .pillar-grid,
    .accolades-grid,
    .process-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hedge-content,
    .discover-content,
    .principled-content,
    .accolades-content,
    .process-content {
        padding: 0 1rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .pillar-item,
    .accolade-item,
    .process-step {
        padding: 1.5rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

/* Print Styles */
@media print {
    .header,
    .modal-overlay,
    #particleCanvas {
        display: none;
    }
    
    body {
        color: black;
        background: white;
    }
    
    .hero,
    .content-section,
    .news-section,
    .discover-section,
    .principled-section,
    .hedge-section,
    .accolades-section,
    .process-section {
        page-break-inside: avoid;
    }
}

/* Investment Strategy Page Styles */

/* CEO Letter Section - Dark with Flowing Particles */
.ceo-section {
    background: url('../img/flow-particles.jpg') center center/cover no-repeat;
    padding: 10rem 0;
    position: relative;
}

.ceo-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.ceo-content {
    max-width: 700px;
    padding-left: 5%;
    position: relative;
    z-index: 2;
}

.ceo-title {
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    line-height: 1.3;
    color: #ffffff;
    margin-bottom: 3rem;
    text-align: left;
    font-weight: 300;
    letter-spacing: -0.5px;
}

.ceo-letter {
    text-align: left;
}

.ceo-text {
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    font-weight: 300;
}

.ceo-signature {
    margin-top: 3rem;
    text-align: left;
}

.signature-name {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: #ffffff;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.signature-title {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    margin: 0;
}

/* History Section - Light with Wave Landscape */
.history-section {
    background: url('../img/wave-landscape.jpg') center center/cover no-repeat;
    padding: 10rem 0;
    position: relative;
}

.history-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    z-index: 1;
}

.history-content {
    max-width: 900px;
    padding-left: 5%;
    position: relative;
    z-index: 2;
}

.history-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.history-item {
    text-align: left;
    padding: 0;
}

.history-title {
    font-size: clamp(1.125rem, 2.2vw, 1.375rem);
    color: #1a1a1a;
    font-weight: 400;
    margin-bottom: 1rem;
    letter-spacing: 0;
}

.history-description {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.7;
    color: #666666;
    font-weight: 300;
}

/* Philosophy Detail Section - Dark */
.philosophy-detail-section {
    background: #0a0e13;
    padding: 10rem 0;
    position: relative;
}

.philosophy-detail-content {
    max-width: 700px;
    padding-left: 5%;
    text-align: left;
}

.philosophy-detail-title {
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    line-height: 1.3;
    color: #ffffff;
    margin-bottom: 3rem;
    text-align: left;
    font-weight: 300;
    letter-spacing: -0.5px;
}

.philosophy-detail-text.primary {
    font-size: clamp(1.125rem, 2.2vw, 1.375rem);
    line-height: 1.7;
    color: #ffffff;
    margin-bottom: 2.5rem;
    font-weight: 300;
    letter-spacing: 0;
}

.philosophy-detail-text.secondary {
    font-size: clamp(0.95rem, 1.8vw, 1.125rem);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    font-weight: 300;
}

/* Awards Section - Light */
.awards-section {
    background: #faf9f7;
    padding: 10rem 0;
}

.awards-content {
    max-width: 900px;
    padding-left: 5%;
    text-align: left;
}

.awards-intro {
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 1.7;
    color: #666666;
    margin-bottom: 3rem;
    font-weight: 300;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.award-item {
    text-align: left;
    padding: 0;
}

.award-title {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: #1a1a1a;
    font-weight: 400;
    margin-bottom: 0.75rem;
    letter-spacing: 0;
}

.award-description {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.7;
    color: #666666;
    font-weight: 300;
    margin: 0;
}

/* Responsive Adjustments for Investment Strategy Page */
@media (max-width: 768px) {
    .ceo-section,
    .history-section,
    .philosophy-detail-section,
    .awards-section {
        padding: 6rem 0;
    }
    
    .history-grid,
    .awards-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .ceo-signature {
        text-align: center;
        margin-top: 3rem;
    }
}