<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Investor Relations Page Specific Styles */

/* Hero Section */
.investor-hero {
    padding: 10rem 0 6rem; /* Increased top padding to account for fixed nav */
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.9)), url('Images/investor-hero-bg.jpg') no-repeat center center/cover; /* Placeholder - replace with actual image if available */
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

.investor-hero .glow {
    width: 400px;
    height: 400px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.2; /* Subtler glow for hero */
}

.investor-hero h1 {
    font-size: 3.5rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    animation: fadeIn 1s ease-out;
}

.investor-hero h2 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-weight: 500;
    animation: fadeIn 1s ease-out 0.2s backwards;
}

.investor-hero p {
    font-size: 1.1rem;
    color: var(--text-dim);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    animation: fadeIn 1s ease-out 0.4s backwards;
}

/* General Section Styling */
.investor-section {
    padding: 5rem 0;
}

.investor-section.alt-bg {
    background-color: var(--bg-section);
}

.investor-section .section-title { /* Already in global.css, but can be overridden if needed */
    margin-bottom: 1.5rem; /* Adjusted margin for investor page */
}
.investor-section .section-subtitle { /* Already in global.css, but can be overridden if needed */
    margin-bottom: 3rem; /* Adjusted margin for investor page */
}

/* Why Invest Section */
#why-invest .highlight-box {
    background-color: var(--bg-card);
    border-left: 4px solid var(--primary);
    padding: 1.5rem 2rem;
    margin: 2.5rem auto;
    max-width: 800px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

#why-invest .highlight-box p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

#why-invest .highlight-box strong {
    color: var(--primary);
    font-weight: 600;
}

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

.pillar {
    background-color: var(--bg-card);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.pillar:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3), 0 0 15px var(--primary-glow);
}

.pillar i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.pillar h3 {
    font-size: 1.3rem;
    color: var(--text-light);
    font-weight: 600;
}

/* SAFE Note Section */
.safe-note-card {
    background-color: var(--bg-card);
    padding: 2.5rem 3rem;
    border-radius: 12px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 1px solid var(--border-color);
    border-left: 5px solid var(--primary);
}

.safe-item {
    font-size: 1.1rem;
    color: var(--text-dim);
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
}
.safe-item:last-child {
    border-bottom: none;
}
.safe-item strong {
    color: var(--text-light);
    font-weight: 600;
    margin-right: 1rem;
}

/* Current Stage Section */
.checklist {
    list-style: none;
    padding-left: 0;
    max-width: 700px;
    margin: 0 auto;
}

.checklist li {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    background-color: var(--bg-card);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: transform 0.2s ease;
}
.checklist li:hover {
    transform: translateX(5px);
}

.checklist i {
    color: var(--primary);
    margin-right: 1rem;
    font-size: 1.3rem;
}

/* Next Milestones Section */
.milestones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.milestone-card {
    background-color: var(--bg-card);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.milestone-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

.milestone-card i {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 1rem;
    display: block;
}

.milestone-card p {
    font-size: 1rem;
    color: var(--text-dim);
    line-height: 1.5;
}

/* Documents Section */
.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.document-link {
    background-color: var(--bg-card);
    padding: 1.2rem 1.5rem;
    border-radius: 8px;
    color: var(--text-light);
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    border: 1px solid var(--border-color);
}

.document-link:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-3px);
}
.document-link:hover i {
    color: white;
}

.document-link i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-right: 1rem;
    transition: color 0.3s ease;
}

.document-link.disabled {
    background-color: var(--accent-gray);
    color: var(--text-dim);
    cursor: not-allowed;
    opacity: 0.7;
}
.document-link.disabled:hover {
    background-color: var(--accent-gray); /* Keep same on hover */
    color: var(--text-dim);
    transform: none;
}
.document-link.disabled i {
    color: var(--text-dim);
}


/* Comparables Table Section */
.table-responsive {
    overflow-x: auto;
    background-color: var(--bg-card);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px; /* Ensure table has a minimum width for smaller viewports before scroll */
}

table th, table td {
    padding: 1rem 1.2rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

table th {
    color: var(--primary);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

table td {
    color: var(--text-dim);
    font-size: 0.95rem;
}
table tbody tr:last-child td {
    border-bottom: none;
}

table tbody tr:hover {
    background-color: var(--bg-section); /* Subtle hover for rows */
}

table td:nth-child(1) { /* Company Name */
    font-weight: 600;
    color: var(--text-light);
}

/* Contact Section */
.contact-section {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.9)), var(--bg-dark); /* Darker, focused feel */
    padding: 6rem 0;
    text-align: center;
}

.contact-section .section-title {
    color: var(--text-light);
}
.contact-section .section-title::after{
    background-color: var(--text-light); /* White underline for contrast */
}


.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.contact-buttons .cta-button {
    min-width: 220px; /* Ensure buttons have a decent width */
}
.contact-buttons .cta-button i {
    margin-right: 0.7rem;
}

.contact-email {
    font-size: 1.1rem;
    color: var(--text-dim);
}
.contact-email a {
    color: var(--primary);
    text-decoration: none;
}
.contact-email a:hover {
    text-decoration: underline;
}

.contact-details {
    margin-top: 2rem;
    text-align: left; /* Default to left for desktop */
}

.contact-details p {
    font-size: 1.1rem;
    color: var(--text-dim);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center; /* Center items for overall section text-align: center */
}

.contact-details p i {
    color: var(--primary);
    margin-right: 0.8rem;
    font-size: 1.2rem;
    width: 1.2em;
    text-align: center;
}
.contact-details p a {
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.3s ease;
}
.contact-details p a:hover {
    color: var(--primary);
}


/* Responsive Adjustments */
@media (max-width: 992px) {
    .investor-hero h1 {
        font-size: 3rem;
    }
    .investor-hero h2 {
        font-size: 1.5rem;
    }
    .investor-hero p {
        font-size: 1rem;
    }
    .safe-note-card {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .investor-hero {
        padding: 8rem 0 4rem;
    }
    .investor-hero h1 {
        font-size: 2.5rem;
    }
    .investor-hero h2 {
        font-size: 1.3rem;
    }

    .investment-pillars,
    .milestones-grid,
    .documents-grid {
        grid-template-columns: 1fr; /* Stack elements */
    }

    .safe-item {
        flex-direction: column;
        align-items: flex-start;
    }
    .safe-item strong {
        margin-bottom: 0.3rem;
    }

    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    .contact-buttons .cta-button {
        width: 100%;
        max-width: 300px; /* Limit button width in stacked view */
    }
    .contact-details {
        text-align: center; /* Center on mobile */
    }
    .contact-details p {
        justify-content: center; /* Ensure content within p is centered on mobile */
    }
}

@media (max-width: 576px) {
    .investor-section {
        padding: 3rem 0;
    }
    .investor-hero h1 {
        font-size: 2rem;
    }
    .investor-hero h2 {
        font-size: 1.1rem;
    }
    .investor-hero p {
        font-size: 0.9rem;
    }
    .pillar, .milestone-card, .document-link, .safe-note-card, .checklist li {
        padding: 1.5rem;
    }
    /* Removed .market-card and .chart-container from here as they are no longer styled by this file */
}
</pre></body></html>