/* Investor Relations Overview Page Styles */
/* Enhanced Design System Variables */
:root {
    --qc-purple-primary: #6a3de8;
    --qc-purple-dark: #5227cf;
    --qc-purple-light: #8a65f0;
    --qc-purple-lighter: #b39ddb;
    --qc-purple-accent: #7c4dff;
    --qc-purple-subtle: #f5f0ff;

    --qc-success: #10b981;
    --qc-success-light: #34d399;
    --qc-warning: #f59e0b;
    --qc-danger: #ef4444;

    --qc-neutral-50: #f9fafb;
    --qc-neutral-100: #f3f4f6;
    --qc-neutral-200: #e5e7eb;
    --qc-neutral-300: #d1d5db;
    --qc-neutral-400: #9ca3af;
    --qc-neutral-500: #6b7280;
    --qc-neutral-600: #4b5563;
    --qc-neutral-700: #374151;
    --qc-neutral-800: #1f2937;
    --qc-neutral-900: #111827;

    --qc-font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --qc-radius-sm: 0.375rem;
    --qc-radius: 0.5rem;
    --qc-radius-lg: 0.75rem;
    --qc-radius-xl: 1rem;
    --qc-radius-2xl: 1.5rem;

    --qc-shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --qc-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --qc-shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --qc-shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --qc-shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);

    --qc-spacing-1: 0.25rem;
    --qc-spacing-2: 0.5rem;
    --qc-spacing-3: 0.75rem;
    --qc-spacing-4: 1rem;
    --qc-spacing-5: 1.25rem;
    --qc-spacing-6: 1.5rem;
    --qc-spacing-8: 2rem;
    --qc-spacing-10: 2.5rem;
    --qc-spacing-12: 3rem;
    --qc-spacing-16: 4rem;
    --qc-spacing-20: 5rem;
    --qc-spacing-24: 6rem;

    --qc-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --qc-transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Styles */
body {
    font-family: var(--qc-font-family);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--qc-spacing-4);
}

/* Enhanced Button System */
.btn-enhanced {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--qc-spacing-2);
    padding: var(--qc-spacing-3) var(--qc-spacing-6);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--qc-radius-lg);
    border: 2px solid transparent;
    text-decoration: none;
    transition: var(--qc-transition);
    cursor: pointer;
    white-space: nowrap;
}

.btn-enhanced--primary {
    background: linear-gradient(135deg, var(--qc-purple-primary), var(--qc-purple-light));
    color: white;
    box-shadow: var(--qc-shadow-md);
}

.btn-enhanced--primary:hover {
    background: linear-gradient(135deg, var(--qc-purple-dark), var(--qc-purple-primary));
    transform: translateY(-2px);
    box-shadow: var(--qc-shadow-lg);
    color: white;
    text-decoration: none;
}

.btn-enhanced--secondary {
    background: white;
    color: var(--qc-purple-primary);
    border-color: var(--qc-purple-primary);
    box-shadow: var(--qc-shadow);
}

.btn-enhanced--secondary:hover {
    background: var(--qc-purple-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--qc-shadow-lg);
    text-decoration: none;
}

.btn-enhanced--large {
    padding: var(--qc-spacing-4) var(--qc-spacing-8);
    font-size: 1.125rem;
}

/* Investor Relations Overview Page */
.investor-overview {
    font-family: var(--qc-font-family);
    color: var(--qc-neutral-800);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: var(--qc-neutral-50);
}

/* Hero Section */
.investor-overview__hero {
    background: linear-gradient(135deg, #8a4baf 0%, #6b46c1 100%);
    color: white;
    padding: 7rem 0;
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid #4c1d95;
}

.investor-overview__hero::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 0;
}

.investor-overview__hero-content {
    max-width: 800px;
    position: relative;
    z-index: 1;
    text-align: center;
    margin: 0 auto;
}

.investor-overview__hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.investor-overview__hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    font-weight: 400;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.investor-overview__hero-actions {
    display: flex;
    justify-content: center;
    gap: var(--qc-spacing-4);
    flex-wrap: wrap;
}

/* Key Metrics Bar */
.investor-overview__metrics {
    background: white;
    box-shadow: var(--qc-shadow-xl);
    border-radius: var(--qc-radius-2xl);
    padding: var(--qc-spacing-8);
    margin: -4rem auto 0;
    position: relative;
    z-index: 10;
    max-width: 1000px;
}

.investor-overview__metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--qc-spacing-6);
}

.investor-overview__metric {
    text-align: center;
    padding: var(--qc-spacing-4);
}

.investor-overview__metric-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--qc-purple-primary);
    display: block;
    margin-bottom: var(--qc-spacing-2);
}

.investor-overview__metric-label {
    color: var(--qc-neutral-600);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Company Overview Section */
.investor-overview__company {
    padding: var(--qc-spacing-20) 0;
    background: white;
}

.investor-overview__company-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.investor-overview__company-text {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--qc-neutral-700);
    margin: 0;
}

/* Navigation Cards Section */
.investor-overview__navigation {
    padding: var(--qc-spacing-20) 0;
    background: var(--qc-neutral-50);
}

.investor-overview__nav-header {
    text-align: center;
    margin-bottom: var(--qc-spacing-12);
}

.investor-overview__nav-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--qc-neutral-900);
    margin-bottom: var(--qc-spacing-4);
}

.investor-overview__nav-subtitle {
    font-size: 1.125rem;
    color: var(--qc-neutral-600);
    max-width: 600px;
    margin: 0 auto;
}

.investor-overview__nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--qc-spacing-8);
    max-width: 1200px;
    margin: 0 auto;
}

.investor-overview__nav-card {
    background: white;
    border-radius: var(--qc-radius-2xl);
    padding: var(--qc-spacing-8);
    box-shadow: var(--qc-shadow-lg);
    border: 1px solid var(--qc-neutral-200);
    transition: var(--qc-transition);
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.investor-overview__nav-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--qc-shadow-xl);
    border-color: var(--qc-purple-light);
    text-decoration: none;
    color: inherit;
}

.investor-overview__nav-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--qc-purple-primary), var(--qc-purple-light));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.investor-overview__nav-card:hover::before {
    opacity: 1;
}

.investor-overview__nav-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--qc-purple-primary), var(--qc-purple-light));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--qc-spacing-4);
    font-size: 28px;
    box-shadow: var(--qc-shadow-md);
    transition: transform 0.3s ease;
}

.investor-overview__nav-card:hover .investor-overview__nav-card-icon {
    transform: scale(1.1) rotate(5deg);
}

.investor-overview__nav-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--qc-neutral-900);
    margin-bottom: var(--qc-spacing-3);
}

.investor-overview__nav-card-description {
    color: var(--qc-neutral-600);
    line-height: 1.6;
    margin-bottom: var(--qc-spacing-4);
}

.investor-overview__nav-card-arrow {
    display: flex;
    align-items: center;
    gap: var(--qc-spacing-2);
    color: var(--qc-purple-primary);
    font-weight: 600;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.investor-overview__nav-card:hover .investor-overview__nav-card-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Final CTA Section */
.investor-overview__cta {
    padding: var(--qc-spacing-20) 0;
    background: linear-gradient(135deg, var(--qc-purple-dark), var(--qc-purple-primary));
    color: white;
    text-align: center;
}

.investor-overview__cta-title {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: var(--qc-spacing-6);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.investor-overview__cta-button {
    background: white;
    color: var(--qc-purple-primary);
    border: 2px solid white;
}

.investor-overview__cta-button:hover {
    background: var(--qc-neutral-100);
    color: var(--qc-purple-dark);
    border-color: var(--qc-neutral-100);
}

/* Animation Enhancement */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.investor-overview__nav-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.investor-overview__nav-card:nth-child(1) {
    animation-delay: 0.1s;
}

.investor-overview__nav-card:nth-child(2) {
    animation-delay: 0.2s;
}

.investor-overview__nav-card:nth-child(3) {
    animation-delay: 0.3s;
}

.investor-overview__nav-card:nth-child(4) {
    animation-delay: 0.4s;
}

.investor-overview__nav-card:nth-child(5) {
    animation-delay: 0.5s;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .investor-overview__hero-title {
        font-size: 3rem;
    }

    .investor-overview__hero-subtitle {
        font-size: 1.35rem;
    }
}

@media (max-width: 991px) {
    .investor-overview__hero-title {
        font-size: 2.5rem;
    }

    .investor-overview__hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .investor-overview__metrics {
        margin: -2rem var(--qc-spacing-4) 0;
        padding: var(--qc-spacing-6);
    }

    .investor-overview__metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--qc-spacing-4);
    }

    .investor-overview__nav-grid {
        grid-template-columns: 1fr;
        gap: var(--qc-spacing-6);
    }
}

@media (max-width: 768px) {
    .investor-overview__hero {
        padding: 5rem 0;
    }

    .investor-overview__hero-title {
        font-size: 2.25rem;
    }

    .investor-overview__hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }

    .investor-overview__nav-title {
        font-size: 2rem;
    }

    .investor-overview__cta-title {
        font-size: 2.25rem;
    }

    .investor-overview__metrics-grid {
        grid-template-columns: 1fr;
    }

    .investor-overview__metric-value {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .investor-overview__hero {
        padding: 4rem 0;
    }

    .investor-overview__hero-title {
        font-size: 1.85rem;
    }

    .investor-overview__hero-subtitle {
        font-size: 1.1rem;
    }

    .investor-overview__nav-card {
        padding: var(--qc-spacing-6);
    }

    .investor-overview__nav-card-title {
        font-size: 1.25rem;
    }

    .investor-overview__cta-title {
        font-size: 1.875rem;
    }
}