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

body {
    font-family: 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Scroll Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Prevent horizontal scrolling on mobile */
html, body {
    overflow-x: hidden;
    width: 100%;
}

/* Disclaimer Section Styling */
.disclaimer-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.disclaimer-content h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    text-align: center;
}

.disclaimer-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
}

.disclaimer-text p {
    margin-bottom: 1rem;
}

.disclaimer-text strong {
    color: #1a1a1a;
    font-weight: 500;
}

/* Mobile disclaimer styling */
@media (max-width: 768px) {
    .disclaimer-content {
        padding: 0 20px;
    }
    
    .disclaimer-content h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .disclaimer-text {
        font-size: 0.85rem;
    }
}

/* Mobile-specific improvements */
@media (max-width: 768px) {
    /* Ensure all containers are properly centered */
    .container,
    .nav-container,
    .hero-container {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        box-sizing: border-box;
    }
    
    /* Center all sections by default */
    .section {
        text-align: center;
        width: 100%;
        max-width: 100%;
    }
    
    /* Override contact section completely */
    section#contact {
        text-align: left !important;
    }
    
    section#contact .contact-info {
        text-align: left !important;
    }
    
    section#contact .contact-details {
        text-align: left !important;
    }
    
    section#contact .contact-details h4 {
        text-align: left !important;
    }
    
    section#contact .contact-details p {
        text-align: left !important;
    }
    
    section#contact .contact-details a {
        text-align: left !important;
    }
    
    section#contact .contact-item {
        text-align: left !important;
    }
    
    /* Fix footer alignment on mobile */
    .footer {
        text-align: center;
    }
    
    .footer-content {
        text-align: center;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .footer-bottom p {
        text-align: center;
    }
    
    /* Fix grid layouts for mobile */
    .services-grid,
    .team-grid,
    .focus-grid,
    .fund-terms-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }
    
    /* Ensure cards are properly sized */
    .service-card,
    .team-member,
    .focus-card,
    .term-card {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        box-sizing: border-box;
        transform: none !important;
        transition: opacity 0.3s ease !important;
    }
}

/* Professional Background Image */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('Background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.25;
    z-index: -1;
    transition: opacity 1.2s ease;
    pointer-events: none;
    filter: blur(0px);
}

body.scrolled::before {
    opacity: 0.35;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Styles - Nordic Minimalistic */
.logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-link:hover {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.logo-container {
    display: flex;
    align-items: center;
}

.nav-logo-image {
    height: 18px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-link {
    text-decoration: none;
    color: #666;
    font-weight: 400;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #1a1a1a;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -4px;
    left: 0;
    background-color: #1a1a1a;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 24px;
    height: 2px;
    background-color: #1a1a1a;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section - Nordic Minimalistic */
.hero {
    padding: 140px 0 100px;
    background: transparent;
    color: #1a1a1a;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    background: transparent;
    padding: 0;
    border-radius: 0;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    background: transparent;
}

.hero-title {
    font-size: 3.25rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.highlight {
    color: #1a1a1a;
    font-weight: 500;
}

.hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: 3rem;
    color: #333;
    line-height: 1.7;
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 32px;
    border-radius: 0;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}

.btn-primary {
    background: #1a1a1a;
    color: white;
    border: 1px solid #1a1a1a;
}

.btn-primary:hover {
    background: #333;
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: #1a1a1a;
    border: 1px solid #1a1a1a;
}

.btn-secondary:hover {
    background: #1a1a1a;
    color: white;
    transform: translateY(-1px);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-graphic {
    position: relative;
    width: 400px;
    height: 400px;
}

.investment-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    position: relative;
}

.card {
    background: #f8f8f8;
    border: 1px solid #e0e0e0;
    border-radius: 0;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.card:hover {
    transform: translateY(-4px);
    background: #f0f0f0;
    border-color: #ccc;
}

.card i {
    font-size: 2rem;
    color: #1a1a1a;
    font-weight: 300;
}

.card span {
    font-weight: 400;
    font-size: 1rem;
    color: #1a1a1a;
}

.card.partnership {
    grid-column: 1 / -1;
    background: #1a1a1a;
    color: white;
}

.card.partnership i,
.card.partnership span {
    color: white;
}

/* Section Styles - Nordic Minimalistic */
.section {
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.7;
    font-weight: 400;
}

/* Enhanced section backgrounds for better contrast */
.bg-light {
    background: rgba(248, 249, 250, 0.95);
    backdrop-filter: blur(10px);
}

.bg-dark {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
}

.bg-dark .section-header h2 {
    color: white;
}

.bg-dark .section-subtitle {
    color: #ccc;
}

/* Services Grid - Nordic Minimalistic */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 3rem 2rem;
    border-radius: 0;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.98);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: #f8f8f8;
    border: 1px solid #e0e0e0;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: #1a1a1a;
    border-color: #1a1a1a;
}

.service-icon i {
    font-size: 1.5rem;
    color: #1a1a1a;
    transition: color 0.3s ease;
}

.service-card:hover .service-icon i {
    color: white;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #1a1a1a;
    letter-spacing: -0.01em;
}

.service-card p {
    color: #666;
    line-height: 1.7;
    font-weight: 400;
}

.strategy-themes {
    margin-top: 1.5rem;
    text-align: left;
}

.strategy-themes h4 {
    font-size: 0.875rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.strategy-themes ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.strategy-themes li {
    color: #666;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.strategy-themes li:before {
    content: "•";
    color: #1a1a1a;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Team Grid - Nordic Minimalistic */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 4rem;
}

.team-member {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 3rem 2rem;
    border-radius: 0;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.98);
}

.member-photo {
    width: 100px;
    height: 100px;
    background: #f8f8f8;
    border: 1px solid #e0e0e0;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    overflow: hidden;
}

.member-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.member-photo i {
    font-size: 2.5rem;
    color: #1a1a1a;
    font-weight: 300;
}

.team-member h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    letter-spacing: -0.01em;
}

.member-title {
    color: #666;
    font-weight: 400;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.member-bio {
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-weight: 400;
}

.member-credentials {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.credential {
    background: #f8f8f8;
    padding: 0.75rem 1.25rem;
    border: 1px solid #e0e0e0;
    border-radius: 0;
    font-size: 0.875rem;
    color: #666;
    font-weight: 400;
}

/* Focus Grid - Nordic Minimalistic */
.focus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.focus-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 3rem 2rem;
    border-radius: 0;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.focus-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.98);
}

.focus-icon {
    width: 50px;
    height: 50px;
    background: #f8f8f8;
    border: 1px solid #e0e0e0;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all 0.3s ease;
}

.focus-card:hover .focus-icon {
    background: #1a1a1a;
    border-color: #1a1a1a;
}

.focus-icon i {
    font-size: 1.25rem;
    color: #1a1a1a;
    transition: color 0.3s ease;
}

.focus-card:hover .focus-icon i {
    color: white;
}

.focus-card h3 {
    font-size: 1.125rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #1a1a1a;
    letter-spacing: -0.01em;
}

.focus-card p {
    color: #666;
    line-height: 1.7;
    font-weight: 400;
}

/* Contact Section - Nordic Minimalistic */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #f8f8f8;
    border: 1px solid #e0e0e0;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.25rem;
    color: #1a1a1a;
}

.contact-details h4 {
    font-size: 1.125rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: white;
    letter-spacing: -0.01em;
}

.contact-details p {
    color: #ccc;
    line-height: 1.7;
    font-weight: 400;
}

.contact-details a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: white;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    font-weight: 400;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

/* Footer - Nordic Minimalistic */
.footer {
    background: #fafafa;
    color: #1a1a1a;
    padding: 4rem 0 2rem;
    border-top: 1px solid #e0e0e0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo h3 {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.footer-logo p {
    color: #666;
    line-height: 1.7;
    font-weight: 400;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.footer-section h4 {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    letter-spacing: -0.01em;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 400;
    font-size: 0.95rem;
}

.footer-section ul li a:hover {
    color: #1a1a1a;
}

.footer-bottom {
    border-top: 1px solid #e0e0e0;
    padding-top: 2rem;
    text-align: center;
    color: #666;
    font-weight: 400;
    font-size: 0.875rem;
}

.footer-disclaimer {
    font-size: 0.75rem;
    color: #999;
    margin-top: 0.5rem;
    opacity: 0.7;
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
        max-width: 100%;
        overflow-x: hidden;
        margin: 0 auto;
        box-sizing: border-box;
    }
    
    .nav-container {
        padding: 0 24px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        border-top: 1px solid #e0e0e0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 0 20px;
        max-width: 100%;
        margin: 0 auto;
        box-sizing: border-box;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }
    
    .hero-graphic {
        width: 100%;
        max-width: 300px;
        height: auto;
        margin: 0 auto;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .logo-container {
        gap: 0.5rem;
    }
    
    .logo-icon {
        width: 32px;
        height: 32px;
    }
    
    .infinity-symbol {
        font-size: 1.1rem;
    }
    
    .nav-logo h2 {
        font-size: 1.125rem;
    }
    
    /* Prevent card shifting on mobile */
    .service-card,
    .team-member,
    .focus-card,
    .term-card,
    .card {
        transform: none !important;
        transition: opacity 0.3s ease !important;
        will-change: auto;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        box-sizing: border-box;
    }
    
    /* Smooth fade-in for mobile */
    .fade-in {
        opacity: 1;
        transform: none;
        transition: opacity 0.6s ease;
    }
    
    .fade-in.visible {
        opacity: 1;
        transform: none;
    }
    
    /* Fix investment cards for mobile */
    .investment-cards {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .card {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        text-align: center;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    .nav-container {
        padding: 0 20px;
    }
    
    .hero-container {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
    
    .section {
        padding: 80px 0;
    }
    
    .service-card,
    .team-member,
    .focus-card {
        padding: 2rem 1.5rem;
    }
    
    .logo-container {
        gap: 0.4rem;
    }
    
    .logo-icon {
        width: 28px;
        height: 28px;
    }
    
    .infinity-symbol {
        font-size: 1rem;
    }
    
    .nav-logo h2 {
        font-size: 1rem;
    }
} 

/* Track Record Section */
.track-record-content {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 1rem;
    align-items: start;
    justify-items: center;
    margin-top: 3rem;
}

.track-record-images {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.track-record-image:first-child,
.track-record-image:nth-child(2) {
    max-width: 120%;
    transform: scale(1.1);
}

.track-record-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
}

.track-record-image {
    text-align: center;
}

.performance-chart {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.track-record-highlight {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    width: 340px;
    height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.track-record-highlight h3 {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.performance-number {
    font-size: 2rem;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
    letter-spacing: -0.02em;
}

.performance-description {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0;
    font-weight: 400;
}

.performance-metrics {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.25rem 0;
}

.metric-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 400;
}

.metric-value {
    font-size: 1.1rem;
    color: #1a1a1a;
    font-weight: 500;
}

.footnote {
    font-size: 0.7rem;
    color: #888;
    line-height: 1.3;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid #eee;
    font-style: italic;
}

.outperformance {
    font-size: 1.125rem;
    color: #1a1a1a;
    font-weight: 500;
    background: rgba(26, 26, 26, 0.05);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    display: inline-block;
}

@media (max-width: 768px) {
    .track-record-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .performance-number {
        font-size: 2.5rem;
    }
}

/* Investment Process Section - Nordic Minimalistic */
.process-flowchart {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 0.5rem;
    margin-bottom: 3rem;
    padding: 2rem 0;
    overflow-x: auto;
}

.flow-step {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-radius: 0;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    width: 180px;
    height: 180px;
    flex-shrink: 0;
}

.flow-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.98);
}

.step-circle {
    width: 32px;
    height: 32px;
    background: #1a1a1a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 400;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.flow-step:hover .step-circle {
    background: #333;
    transform: scale(1.1);
}

.step-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.step-content h4 {
    font-size: 0.875rem;
    font-weight: 400;
    margin-bottom: 0.25rem;
    color: #1a1a1a;
    letter-spacing: -0.01em;
}

.step-content p {
    color: #666;
    line-height: 1.4;
    font-weight: 400;
    font-size: 0.75rem;
    margin: 0;
}

.flow-arrow {
    font-size: 1.25rem;
    color: #1a1a1a;
    font-weight: 300;
    margin-left: 0.25rem;
    flex-shrink: 0;
}

.process-highlight {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: 0;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    width: 100%;
    margin: 0 auto;
}

.highlight-icon {
    width: 35px;
    height: 35px;
    background: #f8f8f8;
    border: 1px solid #e0e0e0;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-icon i {
    font-size: 0.875rem;
    color: #1a1a1a;
}

.highlight-content h3 {
    font-size: 0.875rem;
    font-weight: 400;
    margin-bottom: 0.25rem;
    color: #1a1a1a;
    letter-spacing: -0.01em;
}

.highlight-content p {
    color: #666;
    line-height: 1.4;
    font-weight: 400;
    margin: 0;
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .process-flowchart {
        flex-direction: column;
        gap: 1rem;
    }
    
    .flow-step {
        width: 100%;
        max-width: none;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
        margin: 0.5rem 0;
    }
    
    .process-highlight {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
}

/* Fund Terms Section - Nordic Minimalistic */
.fund-terms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.term-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: 0;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.term-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.98);
}

.term-icon {
    width: 60px;
    height: 60px;
    background: #f8f8f8;
    border: 1px solid #e0e0e0;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.term-card:hover .term-icon {
    background: #1a1a1a;
    border-color: #1a1a1a;
}

.term-icon i {
    font-size: 1.5rem;
    color: #1a1a1a;
    transition: color 0.3s ease;
}

.term-card:hover .term-icon i {
    color: white;
}

.term-card h3 {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #1a1a1a;
    letter-spacing: -0.01em;
}

.term-card p {
    color: #666;
    line-height: 1.7;
    font-weight: 400;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .fund-terms-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Login Page Styles */
.login-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    padding: 2rem 0;
}

.login-container {
    max-width: 500px;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 3rem 2rem;
    border-radius: 0;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-header h1 {
    font-size: 2rem;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.login-header p {
    color: #666;
    font-weight: 400;
}

.login-form-container {
    width: 100%;
}

.login-form .form-group {
    margin-bottom: 1.5rem;
}

.login-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    font-weight: 400;
    font-size: 0.9rem;
}

.login-form input {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 0;
    background: white;
    color: #1a1a1a;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.login-form input:focus {
    outline: none;
    border-color: #1a1a1a;
    box-shadow: 0 0 0 2px rgba(26, 26, 26, 0.1);
}

.login-btn {
    width: 100%;
    margin-top: 1rem;
}

.login-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e0e0e0;
}

.login-footer p {
    color: #666;
    font-size: 0.9rem;
}

.login-footer a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
}

.login-footer a:hover {
    text-decoration: underline;
}

/* Investor Link Styling */
.investor-link {
    background: #1a1a1a;
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.investor-link:hover {
    background: #333;
    color: white !important;
}

/* Dashboard Styles */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.dashboard-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 0;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.dashboard-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.dashboard-icon {
    width: 60px;
    height: 60px;
    background: #f8f8f8;
    border: 1px solid #e0e0e0;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.dashboard-icon i {
    font-size: 1.5rem;
    color: #1a1a1a;
}

.dashboard-card h3 {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #666;
}

.dashboard-value {
    font-size: 2rem;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.dashboard-change {
    font-size: 0.9rem;
    font-weight: 400;
    margin: 0;
}

.dashboard-change.positive {
    color: #28a745;
}

/* Portfolio Styles */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.portfolio-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: 0;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.portfolio-card h3 {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: #1a1a1a;
    text-align: center;
}

.holding-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.holding-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #f8f8f8;
    border: 1px solid #e0e0e0;
    border-radius: 0;
}

.holding-name {
    font-weight: 400;
    color: #1a1a1a;
}

.holding-weight {
    font-weight: 500;
    color: #1a1a1a;
    background: rgba(26, 26, 26, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
}

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

.document-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 0;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.document-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.document-icon {
    width: 60px;
    height: 60px;
    background: #f8f8f8;
    border: 1px solid #e0e0e0;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.document-icon i {
    font-size: 1.5rem;
    color: #1a1a1a;
}

.document-card h3 {
    font-size: 1.125rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.document-card p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.document-link {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border: 1px solid #1a1a1a;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-block;
}

.document-link:hover {
    background: #1a1a1a;
    color: white;
}