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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1A1A1A;
    background-color: #F8F8F8;
    font-weight: 400;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
    color: #1A1A1A;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1A1A1A 0%, #2A2A2A 100%);
    color: #F8F8F8;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23333" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.1;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    z-index: 2;
    position: relative;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.6;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    opacity: 0.7;
}

.scroll-indicator i {
    font-size: 1.5rem;
    color: #F8F8F8;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Section Styles */
section {
    padding: 6rem 0;
}

section:nth-child(even) {
    background-color: #FFFFFF;
}

/* About Section */
.about {
    background-color: #F8F8F8;
}

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

.about-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #333;
}

/* Investment Focus Section */
.investment-focus {
    background-color: #FFFFFF;
}

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

.investment-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: #F8F8F8;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.investment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(26, 26, 26, 0.1);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #1A1A1A, #2A2A2A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon i {
    font-size: 2rem;
    color: #F8F8F8;
}

.investment-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1A1A1A;
}

.investment-card p {
    color: #666;
    line-height: 1.6;
}

/* Philosophy Section */
.philosophy {
    background-color: #F8F8F8;
}

.philosophy-content {
    max-width: 900px;
    margin: 0 auto;
}

.philosophy-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 2rem;
}

.philosophy-list {
    list-style: none;
    padding: 0;
}

.philosophy-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #E0E0E0;
    font-size: 1.125rem;
    color: #1A1A1A;
}

.philosophy-list li:last-child {
    border-bottom: none;
}

/* Governance Section */
.governance {
    background-color: #FFFFFF;
}

.governance-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 900px;
    margin: 0 auto;
}

.governance-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.governance-item {
    padding: 1.5rem;
    background: #F8F8F8;
    border-radius: 8px;
    border-left: 4px solid #1A1A1A;
}

.governance-item h4 {
    font-size: 1.25rem;
    color: #1A1A1A;
    margin: 0;
}

.governance-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
}

/* Document link styles removed as requested */

/* Perspective Section */
.perspective {
    background-color: #F8F8F8;
    text-align: center;
}

.perspective-content {
    max-width: 800px;
    margin: 0 auto;
}

.perspective-quote {
    font-size: 2.5rem;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 2rem;
    font-style: italic;
    line-height: 1.3;
}

.perspective-subtitle {
    font-size: 1.125rem;
    color: #666;
    line-height: 1.6;
}

/* Footer */
.footer {
    background-color: #1A1A1A;
    color: #F8F8F8;
    padding: 3rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-link {
    color: #F8F8F8;
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-link:hover {
    opacity: 1;
}

.separator {
    opacity: 0.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .investment-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .governance-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .perspective-quote {
        font-size: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    section {
        padding: 4rem 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .perspective-quote {
        font-size: 1.75rem;
    }
    
    .investment-card {
        padding: 2rem 1.5rem;
    }
}

/* Smooth animations for scroll reveal */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading animation */
.loading {
    opacity: 0;
    animation: fadeIn 1s ease-in-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
} 