:root {
    /* Color Palette - Light Ivy Blue */
    --primary-color: #2C3E50; /* Slate Navy */
    --primary-hover: #34495E; /* Muted Navy */
    --secondary-color: #5D8AA8; /* Light Ivy Blue */
    --accent-color: #89A8B2; /* Dusty Accent Blue */
    
    --bg-color: #FFFFFF;
    --bg-light: #F0F4F8;
    --bg-card: #FFFFFF;
    
    --text-main: #2D3748;
    --text-light: #4A5568;
    --text-muted: #718096;
    
    --border-color: #E2E8F0;
    
    /* Typography */
    --font-main: 'Outfit', 'Inter', system-ui, -apple-system, sans-serif;
    
    /* Effects */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.05), 0 1px 2px rgba(0,0,0,0.03);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.05), 0 2px 4px rgba(0,0,0,0.03);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.05), 0 8px 10px rgba(0,0,0,0.02);
    
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-main);
    background-color: var(--bg-color);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--primary-color);
    line-height: 1.2;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-color);
}

ul {
    list-style: none;
}

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

.center {
    text-align: center;
}

.bg-light {
    background-color: var(--bg-light);
}

/* Typography Utilities */
.section-title {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.625rem 1.5rem;
    border-radius: 30px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: #FFF;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    color: #FFF;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-large {
    padding: 0.875rem 2rem;
    font-size: 1.125rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
    padding: 1rem 0;
}

.header.scrolled {
    padding: 0.75rem 0;
    box-shadow: var(--shadow-sm);
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-icon {
    height: 48px;
    width: auto;
    mix-blend-mode: multiply; /* Removes white background elegantly */
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.02em;
    display: flex;
    align-items: baseline;
    margin-left: -0.75rem; /* Pulls the 'x' slightly inside the symbol */
    position: relative;
    z-index: 2;
}

.logo-x {
    font-family: "Cambria Math", "Times New Roman", serif;
    font-style: italic;
    font-weight: normal;
    font-size: 1.25em;
    margin-right: 0.15rem;
    color: var(--secondary-color);
}

.inline-x {
    font-family: "Cambria Math", "Times New Roman", serif;
    font-style: italic;
    font-weight: normal;
    margin-right: 0.05rem;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-link:hover {
    color: var(--secondary-color);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    position: absolute;
    transition: var(--transition);
}

.mobile-menu-btn span:nth-child(1) { top: 0; }
.mobile-menu-btn span:nth-child(2) { top: 9px; }
.mobile-menu-btn span:nth-child(3) { top: 18px; }

/* Hero */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--text-main);
    padding-top: 80px; /* Offset for fixed header */
}

.hero-content {
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: rgba(93, 138, 168, 0.15);
    border: 1px solid rgba(93, 138, 168, 0.3);
    color: var(--primary-color);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-title {
    color: var(--primary-color);
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    color: var(--text-main);
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

/* Sections */
.section {
    padding: 6rem 0;
}

/* Overview Section */
.overview-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.stat-box {
    margin-top: 2rem;
    padding-left: 1.5rem;
    border-left: 4px solid var(--accent-color);
}

.stat-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.investor-card {
    background-color: var(--bg-card);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.card-icon {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.investor-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

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

.expertise-card {
    background-color: var(--bg-card);
    padding: 2rem;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.expertise-card .card-title {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    color: var(--primary-color);
}

.card-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

.card-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* Leadership Section */
.content-narrow {
    max-width: 900px;
}

.leadership-profile {
    display: flex;
    gap: 3rem;
    background-color: var(--bg-card);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.profile-header {
    flex: 0 0 250px;
}

.profile-name {
    font-size: 1.5rem;
    margin-top: 1rem;
    margin-bottom: 0.25rem;
}

.profile-role {
    font-size: 0.875rem;
    color: var(--accent-color);
    font-weight: 500;
}

.signature {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.linkedin-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    background-color: var(--bg-light);
    color: var(--text-main);
    padding: 5rem 0;
}

.cta-title {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.cta-subtitle {
    color: var(--text-light);
    margin-bottom: 2.5rem;
    font-size: 1.125rem;
}

/* Footer */
.footer {
    background-color: #F7FAFC;
    color: var(--text-main);
    padding: 3rem 0;
}

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

.footer-logo > .logo {
    margin-bottom: 0.5rem;
}

.footer-logo p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.875rem;
}

.footer-legal p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.875rem;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

/* Responsive */
@media (max-width: 992px) {
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .leadership-profile {
        flex-direction: column;
        gap: 2rem;
    }
    
    .profile-header {
        flex: auto;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .mobile-menu-btn {
        display: block;
        z-index: 1001;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: #FFF;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        z-index: 1000;
    }
    
    .nav.open {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .mobile-menu-btn.open span:nth-child(1) {
        transform: rotate(45deg);
        top: 9px;
    }
    .mobile-menu-btn.open span:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-btn.open span:nth-child(3) {
        transform: rotate(-45deg);
        top: 9px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
}
