/* ===================================
   Chain Bridge Research - Styles
   Exact implementation from Figma design
   =================================== */

/* CSS Variables - Now managed by theme.css for light/dark mode support */
:root {
    /* Typography - Using system fonts that closely match Figma design */
    --font-serif: 'Iowan Old Style', 'Palatino Linotype', 'URW Palladio L', P052, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

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

body {
    font-family: var(--font-sans);
    background-color: var(--bg-canvas);
    color: var(--fg-default);
    line-height: 1.6;
    overflow-x: hidden;
}

.container-fluid {
    padding-left: 112px;
    padding-right: 112px;
}

/* ===================================
   Global Menu
   =================================== */

.global-menu {
    background-color: var(--bg-canvas);
    padding: 16px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
}

.global-menu-links {
    display: flex;
    gap: 0;
}

.global-menu-link {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.14px;
    color: var(--fg-tertiary);
    text-decoration: none;
    padding: 8px 16px;
    position: relative;
    transition: color 0.2s ease;
}

.global-menu-link:hover {
    color: var(--fg-default);
}

.global-menu-link.active {
    color: var(--fg-default);
}


/* ===================================
   Main Navigation
   =================================== */

.main-nav {
    background-color: var(--bg-canvas);
    padding: 16px 0;
    position: fixed;
    top: 52px;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.menu-container {
    position: relative;
}

.menu-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    color: var(--accent-gold);
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 14px;
    line-height: 20px;
    padding: 0;
}

.menu-toggle svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent-gold);
}

.menu-dropdown {
    position: absolute;
    top: calc(100% + 16px);
    left: 0;
    background: var(--bg-secondary);
    border: 1px solid var(--border-primary);
    border-radius: 8px;
    min-width: 200px;
    padding: 8px 0;
    display: none;
    z-index: 1000;
    box-shadow: 0 32px 64px -12px rgba(16, 24, 40, 0.14);
}

.menu-dropdown.active {
    display: block;
}

.menu-dropdown-item {
    display: block;
    padding: 12px 24px;
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.16px;
    color: var(--fg-secondary);
    text-decoration: none;
    transition: all 0.2s ease;
}

.menu-dropdown-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--fg-default);
}

.logo-container {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.logo {
    height: 32px;
    width: auto;
}

.logo-text {
    font-size: 20px;
    font-weight: 600;
    color: var(--fg-default);
}

.nav-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-left: auto;
}

.btn-contact {
    background: transparent;
    border: none;
    color: var(--accent-gold);
    padding: 8px 16px;
    font-size: 14px;
    line-height: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-contact:hover {
    opacity: 0.8;
}

.btn-contact svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

.btn-login {
    background: transparent;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    padding: 8px 24px;
    font-size: 14px;
    line-height: 20px;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-login:hover {
    background: var(--accent-gold);
    color: var(--bg-canvas);
}

/* ===================================
   Hero Section
   =================================== */

.hero-section {
    position: relative;
    height: 432px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--bg-canvas);
    background-image: url('../assets/images/hero-background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 104px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 64px;
    font-weight: 500;
    line-height: 72px;
    letter-spacing: -0.64px;
    margin-bottom: 24px;
    color: var(--fg-default);
}

.hero-subtitle {
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: -0.18px;
    color: var(--fg-secondary);
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary {
    background: var(--btn-primary);
    border: none;
    color: var(--fg-default);
    padding: 16px 48px;
    font-size: 16px;
    line-height: 24px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-primary:hover {
    background: var(--btn-primary-hover);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 48px;
    font-size: 16px;
}

/* ===================================
   What We Do Section
   =================================== */

.what-we-do-section {
    background-color: var(--bg-canvas);
    padding: 96px 0;
}

.what-we-do-section .section-description {
    text-align: center;
}

.section-header {
    text-align: center;
    max-width: 1280px;
    margin: 0 auto 64px;
    padding: 0 32px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 48px;
    font-weight: 500;
    line-height: 56px;
    letter-spacing: -0.48px;
    margin-bottom: 24px;
    color: var(--fg-default);
}

.section-description {
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: -0.18px;
    color: var(--fg-secondary);
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.what-we-do-list {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

.what-we-do-item {
    display: grid;
    grid-template-columns: 24px 1fr 2fr;
    gap: 32px;
    align-items: start;
    padding: 32px 0;
    border-bottom: 1px solid var(--border-primary);
    transition: all 0.3s ease;
}

.what-we-do-item:hover {
    padding-left: 16px;
    border-left: 3px solid var(--border-primary);
}

.item-icon {
    flex-shrink: 0;
    color: var(--fg-secondary);
    width: 24px;
    height: 24px;
}

.item-icon svg,
.item-icon img {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    display: block;
}

.item-title {
    font-family: var(--font-sans);
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: -0.20px;
    color: var(--fg-default);
    margin: 0;
}

.item-description {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.16px;
    color: var(--fg-tertiary);
    margin: 0;
}

/* ===================================
   Sample Reports Section
   =================================== */

.sample-reports-section {
    background-color: var(--bg-canvas);
    padding: 96px 0;
}

.sample-reports-section .section-header {
    text-align: left;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

.sample-reports-section .section-title {
    font-size: 28px;
    line-height: 36px;
}

.reports-table-container {
    max-width: 1280px;
    margin: 48px auto 0;
    padding: 0 32px;
    overflow-x: auto;
}

.reports-table-wrapper {
    border: 1px solid var(--border-primary);
    border-radius: 8px;
    overflow: hidden;
}

.region-tabs {
    display: flex;
    gap: 0;
    background-color: var(--bg-canvas);
    border-bottom: 1px solid var(--border-primary);
}

.region-tab {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.14px;
    color: var(--fg-tertiary);
    background: transparent;
    border: none;
    padding: 16px 24px;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
}

.region-tab:hover {
    color: var(--fg-secondary);
}

.region-tab.active {
    color: var(--accent-gold);
}

.reports-table {
    width: calc(100% + 2px);
    margin-left: -1px;
    border-collapse: collapse;
    background-color: transparent !important;
}

.reports-table thead {
    background-color: transparent !important;
}

.reports-table tbody {
    background-color: transparent !important;
}

.reports-table tbody tr {
    background-color: transparent !important;
    position: relative;
}

.reports-table tbody tr::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100vw;
    bottom: 0;
    height: 1px;
    background-color: var(--border-primary);
    z-index: 1;
}

.reports-table tbody tr:last-child::after {
    display: none;
}

.reports-table thead tr {
    position: relative;
}

.reports-table thead tr::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100vw;
    bottom: 0;
    height: 1px;
    background-color: var(--border-primary);
    z-index: 1;
}

.reports-table tbody td {
    background-color: transparent !important;
}

.reports-table th {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.14px;
    color: var(--fg-tertiary);
    text-align: left;
    padding: 16px 24px;
    border-bottom: none;
}

.reports-table th:first-child {
    padding-left: 32px;
    width: 20%;
}

.reports-table th:nth-child(2) {
    width: 65%;
}

.reports-table th:last-child {
    text-align: right;
    padding-right: 32px;
    width: 15%;
}

.reports-table td {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.16px;
    color: var(--fg-default);
    padding: 20px 24px;
    border-bottom: none;
}

.reports-table td:first-child {
    padding-left: 32px;
    width: 20%;
}

.reports-table td:nth-child(2) {
    width: 65%;
}

.reports-table td:last-child {
    padding-right: 10px;
    width: 15%;
    text-align: right;
}

.reports-table tbody tr:last-child td {
    border-bottom: none;
}

.reports-table tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.02);
}

.btn-download {
    color: var(--btn-primary);
    text-decoration: none;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.download-icon {
    width: 16px;
    height: 16px;
    display: inline-block;
    line-height: 20px;
    transition: all 0.2s ease;
}

.btn-download:hover {
    color: var(--btn-primary-hover);
}

/* ===================================
   Trusted By Section
   =================================== */

.trusted-by-section {
    background-color: var(--bg-secondary);
    padding: 96px 0;
}

.trusted-content {
    padding-right: 48px;
}

.trusted-label {
    font-size: 14px;
    line-height: 20px;
    color: var(--fg-tertiary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.trusted-title {
    font-family: var(--font-serif);
    font-size: 36px;
    font-weight: 500;
    line-height: 44px;
    margin-bottom: 48px;
    color: var(--fg-default);
}

.stat-item {
    margin-bottom: 48px;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 48px;
    font-weight: 500;
    line-height: 56px;
    letter-spacing: -0.48px;
    margin-bottom: 12px;
    color: var(--fg-default);
}

.stat-description {
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: -0.18px;
    color: var(--fg-tertiary);
    margin: 0;
}

.platform-preview {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 32px 64px -12px rgba(16, 24, 40, 0.14);
}

.platform-preview img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===================================
   Team Section
   =================================== */

.team-section {
    background-color: var(--bg-canvas);
    padding: 96px 0;
}

.team-header {
    padding-right: 48px;
}

.team-header .section-title {
    text-align: left;
    font-size: 28px;
    line-height: 36px;
}

.team-header .section-description {
    text-align: left;
    margin: 0;
}

.team-header .btn-primary {
    background: transparent;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    padding: 8px 24px;
    font-size: 14px;
    line-height: 20px;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.team-header .btn-primary:hover {
    background: var(--accent-gold);
    color: var(--bg-canvas);
}

.team-grid {
    display: flex;
    gap: 32px;
    overflow-x: auto;
    padding-bottom: 16px;
}

.team-grid::-webkit-scrollbar {
    height: 8px;
}

.team-grid::-webkit-scrollbar-track {
    background: var(--bg-secondary);
    border-radius: 4px;
}

.team-grid::-webkit-scrollbar-thumb {
    background: var(--border-primary);
    border-radius: 4px;
}

.team-grid::-webkit-scrollbar-thumb:hover {
    background: var(--fg-tertiary);
}

.team-member {
    position: relative;
    flex: 0 0 auto;
    width: 444px;
}

.team-member-large {
    width: 444px;
}

.team-member-image {
    position: relative;
    width: 100%;
    padding-bottom: 69.37%;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 24px;
}

.team-member-large .team-member-image {
    padding-bottom: 120%;
}

.team-member-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    filter: grayscale(100%);
    transition: all 0.5s ease;
}

.team-member:hover .team-member-image img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.team-member-info {
    padding: 0 8px;
}

.team-member-name {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 500;
    line-height: 36px;
    letter-spacing: -0.28px;
    margin-bottom: 8px;
    color: var(--fg-default);
}

.team-member-role {
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: -0.18px;
    color: var(--fg-tertiary);
    margin: 0;
}

/* ===================================
   Disclaimer Section
   =================================== */

.disclaimer-section {
    background-color: var(--bg-canvas);
    border-top: 1px solid var(--border-primary);
    border-bottom: 1px solid var(--border-primary);
    padding: 32px 0;
}

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

.disclaimer-text {
    font-size: 18px;
    line-height: 26px;
    color: var(--fg-tertiary);
    margin: 0;
}

.disclaimer-link {
    color: var(--btn-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.disclaimer-link:hover {
    color: var(--btn-primary-hover);
}

/* ===================================
   Footer
   =================================== */

.footer {
    background-color: var(--bg-canvas);
    padding: 48px 0 24px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 24px;
    margin-bottom: 24px;
}

.footer-logo {
    height: 32px;
    width: auto;
    opacity: 0.6;
}

.footer-info-section {
    display: flex;
    gap: 48px;
}

.footer-info {
    margin-bottom: 0;
}

.footer-label {
    font-size: 12px;
    line-height: 18px;
    color: var(--fg-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.footer-text {
    font-size: 16px;
    line-height: 24px;
    color: var(--fg-secondary);
    margin: 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-primary);
    padding-top: 24px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-link {
    font-size: 14px;
    line-height: 20px;
    color: var(--fg-tertiary);
    text-decoration: underline;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: var(--fg-default);
}

.footer-copyright {
    margin: 0;
}

.footer-copyright p {
    font-size: 12px;
    line-height: 18px;
    color: var(--fg-tertiary);
    margin: 0;
}

/* ===================================
   Responsive Design
   =================================== */

@media (max-width: 1199px) {
    .container-fluid {
        padding-left: 48px;
        padding-right: 48px;
    }
}

@media (max-width: 991px) {
    .container-fluid {
        padding-left: 24px;
        padding-right: 24px;
    }
    
    .menu-toggle span {
        display: none;
    }
    
    .btn-contact span {
        display: none;
    }
    
    .btn-login {
        padding: 8px 16px;
    }
    
    .hero-section {
        height: 300px;
    }
    
    .hero-title {
        font-size: 48px;
        line-height: 56px;
    }
    
    .section-title {
        font-size: 36px;
        line-height: 44px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .team-member-large {
        grid-row: span 1;
    }
    
    .footer-top {
        flex-direction: column;
        gap: 32px;
    }
    
    .footer-info-section {
        flex-direction: column;
        gap: 24px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
}

@media (max-width: 767px) {
    .hero-section {
        height: 250px;
    }
    
    .hero-title {
        font-size: 36px;
        line-height: 44px;
    }
    
    .section-title {
        font-size: 28px;
        line-height: 36px;
    }
    
    .what-we-do-item {
        grid-template-columns: 24px 1fr;
        gap: 16px;
    }
    
    .item-title {
        grid-column: 2;
    }
    
    .item-description {
        grid-column: 1 / -1;
        padding-left: 56px;
    }
    
    .reports-table {
        font-size: 14px;
    }
    
    .reports-table th,
    .reports-table td {
        padding: 12px 16px;
    }
}

/* ===================================
   Animations
   =================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection color */
::selection {
    background-color: var(--btn-primary);
    color: var(--fg-default);
}

/* ===================================
   Research Overview Page
   =================================== */

.research-hero-section {
    background-color: var(--bg-canvas);
    padding: 120px 0 80px;
}

.research-hero-content {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 120px;
}

.research-hero-text {
    flex: 0 0 auto;
    max-width: 600px;
}

.research-hero-title {
    font-family: var(--font-serif);
    font-size: 48px;
    line-height: 56px;
    font-weight: 500;
    color: var(--fg-default);
    margin: 0 0 24px 0;
}

.research-hero-subtitle {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 24px;
    color: var(--fg-secondary);
    margin: 0;
}

.research-hero-graphic {
    flex-shrink: 0;
    width: 300px;
    height: 300px;
}

.hero-svg {
    width: 100%;
    height: 100%;
    color: var(--fg-secondary);
}

.sample-reports-section {
    background-color: var(--bg-canvas);
    padding: 80px 0;
}

.section-title {
    font-family: var(--font-sans);
    font-size: 28px;
    line-height: 36px;
    font-weight: 400;
    color: var(--fg-default);
    margin: 0 0 32px 0;
}

.reports-table {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background-color: var(--border-primary);
    border: 1px solid var(--border-primary);
}

.report-row {
    display: grid;
    grid-template-columns: 150px 1fr 100px;
    background-color: var(--bg-canvas);
}

.report-row:first-child {
    background-color: var(--bg-secondary);
}

.report-cell {
    padding: 16px;
    font-family: var(--font-sans);
    font-size: 14px;
    line-height: 20px;
    color: var(--fg-secondary);
}

.report-row:first-child .report-cell {
    font-weight: 500;
    color: var(--fg-default);
}

.download-link {
    color: var(--btn-primary);
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.download-link:hover {
    color: var(--btn-primary-hover);
}

.download-link svg {
    flex-shrink: 0;
}

.whats-inside-section {
    background-color: var(--bg-canvas);
    padding: 96px 0 48px;
}

.whats-inside-header {
    margin-bottom: 48px;
}

.section-subtitle {
    font-family: var(--font-sans);
    font-size: 18px;
    line-height: 26px;
    color: var(--fg-secondary);
    opacity: 0.6;
    max-width: 760px;
    margin: 8px 0 0 0;
}

.whats-inside-content {
    display: flex;
    gap: 64px;
    align-items: flex-start;
}

.feature-tabs {
    flex: 0 0 560px;
    max-width: 560px;
}

.feature-tab {
    padding: 16px 0 16px 24px;
    border-left: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

.feature-tab:hover {
    padding-left: 32px;
    border-left-color: var(--accent-gold);
}

.feature-tab.active {
    border-left-color: var(--accent-gold);
}

.feature-tab-title {
    font-family: var(--font-sans);
    font-size: 28px;
    line-height: 36px;
    font-weight: 400;
    color: var(--fg-default);
    margin: 0 0 8px 0;
}

.feature-tab-description {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 24px;
    color: var(--fg-secondary);
    margin: 0;
}

.feature-chart {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
    padding: 32px;
    border-radius: 8px;
}

.chart-image {
    max-width: 100%;
    height: auto;
}

.methodology-section {
    background-color: var(--bg-canvas);
    padding: 80px 0;
}

.methodology-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 80px;
}

.section-title-left {
    font-family: var(--font-serif);
    font-size: 36px;
    line-height: 44px;
    font-weight: 500;
    color: var(--fg-default);
    margin: 0 0 16px 0;
}

.section-description {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 24px;
    color: var(--fg-secondary);
    margin: 0;
    text-align: center;
}

.methodology-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.methodology-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.methodology-icon {
    font-size: 24px;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.methodology-icon img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.methodology-content {
    flex: 1;
}

.methodology-title {
    font-family: var(--font-sans);
    font-size: 20px;
    line-height: 28px;
    font-weight: 500;
    color: var(--fg-default);
    margin: 0 0 8px 0;
}

.methodology-description {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 24px;
    color: var(--fg-secondary);
    margin: 0;
}

.benefits-section {
    background-color: var(--bg-canvas);
    padding: 96px 0;
}

.benefits-header {
    max-width: 760px;
    margin: 0 0 48px 0;
}

.benefits-subtitle {
    font-family: var(--font-sans);
    font-size: 20px;
    line-height: 28px;
    font-weight: 500;
    color: var(--fg-default);
    margin: 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.benefit-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.benefit-number {
    font-family: var(--font-serif);
    font-size: 96px;
    line-height: 90px;
    color: var(--bg-surface-dark);
    margin: 0;
    flex-shrink: 0;
}

.benefit-content {
    flex: 1;
    padding-top: 4px;
}

.benefit-title {
    font-family: var(--font-serif);
    font-size: 28px;
    line-height: 36px;
    font-weight: 500;
    color: var(--fg-default);
    margin: 0 0 8px 0;
}

.benefit-description {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 24px;
    color: var(--fg-secondary);
    margin: 0;
}

.cta-section {
    background-color: var(--bg-canvas);
    padding: 96px 0;
}

.cta-content {
    background-color: var(--bg-surface-dark);
    padding: 64px;
    border-radius: 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.cta-title {
    font-family: var(--font-serif);
    font-size: 28px;
    line-height: 36px;
    font-weight: 500;
    color: var(--fg-default);
    margin: 0;
}

.cta-subtitle {
    font-family: var(--font-sans);
    font-size: 18px;
    line-height: 26px;
    color: var(--fg-tertiary);
    margin: 0;
}

.btn-cta {
    padding: 12px 24px;
    background-color: var(--btn-primary);
    color: #E8F1FE;
    border: none;
    border-radius: 40px;
    font-family: var(--font-sans);
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-cta:hover {
    background-color: var(--btn-primary-hover);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1024px) {
    .research-hero-content {
        flex-direction: column;
        gap: 48px;
    }
    
    .research-hero-graphic {
        width: 200px;
        height: 200px;
    }
    
    .whats-inside-content {
        flex-direction: column;
        gap: 32px;
    }
    
    .feature-tabs {
        flex: 1;
        max-width: 100%;
    }
    
    .methodology-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .research-hero-section {
        padding: 48px 0;
    }
    
    .research-hero-title {
        font-size: 32px;
        line-height: 40px;
    }
    
    .sample-reports-section,
    .whats-inside-section,
    .methodology-section,
    .benefits-section {
        padding: 48px 0;
    }
    
    .cta-section {
        padding: 48px 0;
    }
    
    .report-row {
        grid-template-columns: 1fr;
    }
    
    .report-cell {
        padding: 12px;
        font-size: 12px;
    }
    
    .feature-item {
        padding: 24px;
    }
    
    .feature-title {
        font-size: 24px;
        line-height: 32px;
    }
    
    .section-title-left,
    .section-title-center {
        font-size: 28px;
        line-height: 36px;
    }
    
    .benefit-number {
        font-size: 64px;
        line-height: 60px;
    }
    
    .benefit-title {
        font-size: 24px;
        line-height: 32px;
    }
    
    .cta-content {
        padding: 32px 24px;
    }
    
    .cta-title {
        font-size: 24px;
        line-height: 32px;
    }
}

/* ===================================
   Article Pages (Merger Arbitrage, etc.)
   =================================== */

.article-header-section {
    background-color: var(--bg-canvas);
    padding: 80px 0;
}

.article-header-content {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}

.article-page-title {
    font-family: var(--font-serif);
    font-size: 36px;
    line-height: 44px;
    font-weight: 500;
    color: var(--fg-default);
    margin: 0 0 16px 0;
}

.article-subtitle {
    font-family: var(--font-sans);
    font-size: 18px;
    line-height: 26px;
    color: var(--fg-secondary);
    opacity: 0.6;
    max-width: 760px;
    margin: 0 auto;
}

.article-image-section {
    background-color: var(--bg-canvas);
    padding: 0 0 80px;
}

.article-image-wrapper {
    max-width: 1280px;
    margin: 0 auto;
}

.article-image-placeholder {
    width: 100%;
    height: 400px;
    background-color: var(--bg-secondary);
    border-radius: 8px;
}

.article-content-section {
    background-color: var(--bg-canvas);
    padding: 0 0 80px;
}

.article-content-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.article-content {
    max-width: 720px;
    width: 100%;
}

.content-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.content-list-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.list-item-heading {
    font-family: var(--font-sans);
    font-size: 20px;
    line-height: 28px;
    font-weight: 500;
    color: var(--fg-default);
    margin: 0;
}

.list-item-text {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 24px;
    color: var(--fg-secondary);
    margin: 0;
}

.content-callout {
    background-color: var(--bg-secondary);
    padding: 32px;
    border-radius: 8px;
    margin-top: 40px;
}

.callout-heading {
    font-family: var(--font-sans);
    font-size: 20px;
    line-height: 28px;
    font-weight: 500;
    color: var(--fg-default);
    margin: 0 0 20px 0;
}

.callout-text {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 24px;
    color: var(--fg-secondary);
}

.callout-text p {
    margin: 0 0 16px 0;
}

.callout-text p:last-child {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .article-header-section {
        padding: 48px 0;
    }
    
    .article-page-title {
        font-size: 28px;
        line-height: 36px;
    }
    
    .article-subtitle {
        font-size: 16px;
        line-height: 24px;
    }
    
    .article-image-section {
        padding: 0 0 48px;
    }
    
    .article-image-placeholder {
        height: 250px;
    }
    
    .article-content-section {
        padding: 0 0 48px;
    }
    
    .list-item-heading {
        font-size: 18px;
        line-height: 26px;
    }
    
    .list-item-text {
        font-size: 14px;
        line-height: 20px;
    }
    
    .content-callout {
        padding: 24px;
    }
    
    .callout-heading {
        font-size: 18px;
        line-height: 26px;
    }
    
    .callout-text {
        font-size: 14px;
        line-height: 20px;
    }
}

/* ===================================
   Terms & Conditions / Privacy Page
   =================================== */

.terms-header-section {
    background-color: var(--bg-canvas);
    padding: 80px 0;
}

.terms-header-content {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}

.terms-page-title {
    font-family: var(--font-serif);
    font-size: 36px;
    line-height: 44px;
    font-weight: 500;
    color: var(--fg-default);
    margin: 0;
}

.terms-content-section {
    background-color: var(--bg-canvas);
    padding: 0 0 80px;
}

.terms-content-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.terms-content {
    max-width: 720px;
    width: 100%;
}

.content-block {
    margin-bottom: 40px;
}

.content-block:last-child {
    margin-bottom: 0;
}

.content-heading {
    font-family: var(--font-sans);
    font-size: 28px;
    line-height: 36px;
    font-weight: 400;
    color: var(--fg-default);
    margin: 0 0 16px 0;
}

.content-text {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 24px;
    color: var(--fg-secondary);
}

.content-text p {
    margin: 0 0 16px 0;
}

.content-text p:last-child {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .terms-header-section {
        padding: 48px 0;
    }
    
    .terms-page-title {
        font-size: 28px;
        line-height: 36px;
    }
    
    .terms-content-section {
        padding: 0 0 48px;
    }
    
    .content-heading {
        font-size: 24px;
        line-height: 32px;
    }
    
    .content-text {
        font-size: 14px;
        line-height: 20px;
    }
}

/* ===================================
   Login Modal
   =================================== */

.login-modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.login-modal.active {
    pointer-events: auto;
    opacity: 1;
}

.login-modal-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
}

.login-modal-content {
    position: relative;
    width: 100%;
    max-width: 440px;
    background-color: var(--bg-canvas);
    border: 1px solid var(--border-primary);
    border-radius: 8px;
    box-shadow: 0px 4px 52px 0px rgba(0, 0, 0, 0.06);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.login-modal.active .login-modal-content {
    transform: scale(1);
}

.login-modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 24px;
    height: 24px;
    background: none;
    border: none;
    color: var(--fg-tertiary);
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
    z-index: 10;
}

.login-modal-close:hover {
    color: var(--fg-default);
}

.login-modal-body {
    padding: 72px 48px 48px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.login-modal-title {
    font-family: var(--font-serif);
    font-size: 28px;
    line-height: 36px;
    font-weight: 500;
    color: var(--fg-default);
    margin: 0;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-hint {
    font-family: var(--font-sans);
    font-size: 12px;
    line-height: 16px;
    color: var(--fg-tertiary);
    margin: 0;
    margin-top: 4px;
}

.login-form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.forgot-password {
    font-family: var(--font-sans);
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: var(--btn-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.forgot-password:hover {
    color: var(--btn-primary-hover);
}

.btn-submit-login {
    width: 100%;
    padding: 10px 24px;
    background-color: var(--btn-primary);
    color: #E8F1FE;
    border: none;
    border-radius: 40px;
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 16px;
}

.btn-submit-login:hover {
    background-color: var(--btn-primary-hover);
    transform: translateY(-1px);
}

.btn-submit-login:active {
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .login-modal-content {
        max-width: calc(100% - 32px);
        margin: 0 16px;
    }
    
    .login-modal-body {
        padding: 72px 24px 24px;
    }
    
    .login-modal-title {
        font-size: 24px;
        line-height: 32px;
    }
}

/* ===================================
   Contact Form Flyout
   =================================== */

.contact-flyout {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-flyout.active {
    pointer-events: auto;
    opacity: 1;
}

.contact-flyout-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.contact-flyout-panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 440px;
    background-color: var(--bg-canvas);
    border-left: 1px solid #15191E;
    box-shadow: 0px 4px 52px 0px rgba(0, 0, 0, 0.06);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.contact-flyout.active .contact-flyout-panel {
    transform: translateX(0);
}

.contact-flyout-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 24px;
    height: 24px;
    background: none;
    border: none;
    color: var(--fg-tertiary);
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
    z-index: 10;
}

.contact-flyout-close:hover {
    color: var(--fg-default);
}

.contact-flyout-content {
    padding: 72px 48px 48px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-flyout-title {
    font-family: var(--font-serif);
    font-size: 28px;
    line-height: 36px;
    font-weight: 500;
    color: var(--fg-default);
    text-align: center;
    margin: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-family: var(--font-sans);
    font-size: 14px;
    line-height: 20px;
    color: var(--fg-secondary);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    background-color: var(--bg-canvas);
    border: 1px solid var(--border-primary);
    border-radius: 4px;
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 24px;
    color: var(--fg-default);
    transition: all 0.2s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #6b7682;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--btn-primary);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.phone-input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.phone-input-group .form-input {
    padding-right: 80px;
}

.phone-country {
    position: absolute;
    right: 16px;
    display: flex;
    align-items: center;
    gap: 4px;
    color: #6b7682;
    font-size: 16px;
    line-height: 24px;
    pointer-events: none;
}

.phone-country svg {
    width: 12px;
    height: 8px;
    color: #6b7682;
}

.contact-form-footer {
    font-family: var(--font-sans);
    font-size: 12px;
    line-height: 16px;
    color: var(--fg-tertiary);
    margin: 0;
}

.contact-phone {
    color: var(--fg-default);
    font-weight: 500;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
    border: 1px solid var(--border-primary);
    border-radius: 2px;
    background-color: var(--bg-canvas);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    position: relative;
}

.form-checkbox input[type="checkbox"]:checked {
    background-color: var(--btn-primary);
    border-color: var(--btn-primary);
}

.form-checkbox input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 1px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.form-checkbox label {
    font-family: var(--font-sans);
    font-size: 14px;
    line-height: 20px;
    color: var(--fg-default);
    cursor: pointer;
    user-select: none;
}

.btn-submit-contact {
    width: 100%;
    padding: 10px 24px;
    background-color: var(--btn-primary);
    color: #E8F1FE;
    border: none;
    border-radius: 40px;
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-submit-contact:hover {
    background-color: var(--btn-primary-hover);
    transform: translateY(-1px);
}

.btn-submit-contact:active {
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .contact-flyout-panel {
        max-width: 100%;
    }
    
    .contact-flyout-content {
        padding: 72px 24px 24px;
    }
    
    .contact-flyout-title {
        font-size: 24px;
        line-height: 32px;
    }
}

/* ===================================
   Application Modal
   =================================== */

.application-modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.application-modal.active {
    pointer-events: auto;
    opacity: 1;
}

.application-modal-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
}

.application-modal-content {
    position: relative;
    width: 100%;
    max-width: 560px;
    background-color: var(--bg-canvas);
    border: 1px solid var(--border-primary);
    border-radius: 8px;
    box-shadow: 0px 4px 52px 0px rgba(0, 0, 0, 0.06);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.application-modal.active .application-modal-content {
    transform: scale(1);
}

.application-modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 24px;
    height: 24px;
    background: none;
    border: none;
    color: var(--fg-tertiary);
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
    z-index: 10;
}

.application-modal-close:hover {
    color: var(--fg-default);
}

.application-modal-body {
    padding: 72px 48px 48px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.application-modal-title {
    font-family: var(--font-serif);
    font-size: 36px;
    line-height: 44px;
    font-weight: 500;
    color: var(--fg-default);
    margin: 0;
}

.application-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-textarea {
    width: 100%;
    padding: 12px 16px;
    background-color: var(--bg-canvas);
    border: 1px solid var(--border-primary);
    border-radius: 4px;
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 24px;
    color: var(--fg-default);
    resize: vertical;
    min-height: 100px;
}

.form-textarea::placeholder {
    color: #6b7682;
}

.form-textarea:focus {
    outline: none;
    border-color: var(--btn-primary);
}

.btn-upload-cv {
    width: 100%;
    padding: 12px 16px;
    background-color: var(--bg-surface-dark);
    border: none;
    border-radius: 4px;
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 24px;
    color: var(--fg-default);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.btn-upload-cv:hover {
    background-color: #2d3540;
}

.btn-upload-cv svg {
    width: 24px;
    height: 24px;
}

.btn-submit-application {
    width: 100%;
    padding: 12px 24px;
    background-color: var(--btn-primary);
    color: #E8F1FE;
    border: none;
    border-radius: 40px;
    font-family: var(--font-sans);
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-submit-application:hover {
    background-color: var(--btn-primary-hover);
    transform: translateY(-1px);
}

.btn-submit-application:active {
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .application-modal-content {
        max-width: calc(100% - 32px);
        margin: 0 16px;
    }
    
    .application-modal-body {
        padding: 72px 24px 24px;
    }
    
    .application-modal-title {
        font-size: 28px;
        line-height: 36px;
    }
}

/* ===================================
   Disclaimer Page
   =================================== */

.disclaimer-content-section {
    background-color: var(--bg-canvas);
    padding: 160px 0 96px;
    min-height: calc(100vh - 400px);
}

.disclaimer-content-wrapper {
    max-width: 853px;
    margin: 0 auto;
    padding: 64px;
    background-color: var(--bg-canvas);
    border: 1px solid var(--border-primary);
    border-radius: 8px;
    box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.04), 0px 5px 16px 0px rgba(0, 0, 0, 0.1);
}

.disclaimer-page-title {
    font-family: var(--font-sans);
    font-size: 30px;
    line-height: 38px;
    font-weight: 400;
    color: var(--fg-default);
    margin: 0 0 24px 0;
}

.disclaimer-page-text {
    font-family: var(--font-sans);
    font-size: 18px;
    line-height: 28px;
    color: var(--fg-default);
}

.disclaimer-page-text p {
    margin: 0 0 18px 0;
}

.disclaimer-page-text p:last-child {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .disclaimer-content-section {
        padding: 120px 0 48px;
    }
    
    .disclaimer-content-wrapper {
        padding: 32px 24px;
    }
    
    .disclaimer-page-title {
        font-size: 24px;
        line-height: 32px;
    }
    
    .disclaimer-page-text {
        font-size: 16px;
        line-height: 24px;
    }
}
