﻿.video-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, var(--panel), rgba(255,255,255,0.005));
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 40px;
    position: absolute;
    inset: 0;
}

.video-placeholder i {
    color: rgba(46,195,150,0.5);
    margin-bottom: 20px;
}

.video-placeholder h2 {
    text-align: center;
    font-size: 18px;
    color: var(--text);
    margin-bottom: 12px;
}

.video-placeholder p {
    text-align: center;
}

.video-placeholder a {
    color: rgba(46, 195, 150, 0.9);
    text-decoration: none;
    border-bottom: 1px solid rgba(46,195,150,0.3);
    transition: all .2s ease;
}

.video-placeholder a:hover {
    color: rgba(46, 195, 150, 1);
    border-bottom-color: rgba(46, 195, 150, 0.8);
}

html {
    box-sizing: border-box;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

body {
    margin: 0 auto;
    padding: 0 auto;
    color: var(--text);
}

h1, h2, h3, h4, h5, p, ul {
    padding: 0;
    margin: 0;
    font-weight: 400;
}

.popup {
    display: none;
    position: fixed;
    inset: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    transition: opacity 0.25s ease;
    z-index: 10000;
    overflow: auto;
}

.popup-content {
    position: relative;
    background: transparent;
    color: var(--text);
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    max-width: 900px;
    width: 100%;
    max-height: calc(100vh - 80px);
    overflow: auto;
    box-sizing: border-box;
    box-shadow: 0 20px 60px rgba(0,0,0,0.45);
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 12px;
    cursor: pointer;
    font-size: 1.2rem;
    color: #666!important;
    transition: color 0.2s;
}

.close-btn:hover {
    color: #000;
}

a:hover i{
    transform: none !important;
}

.hero-cta-group {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

.hero-cta-secondary {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 16px;
    flex-wrap: wrap;
}

.companies {
    text-align: center;
    padding: 0px 60px 20px;
    background: transparent;
}

.filters {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 32px;
}

.companies .section-header {
    font-size: 2rem;
    margin-bottom: 40px;
    font-weight: 700;
    color: var(--text);
}


/* ── Who We Serve Section ── */
.serve-section {
    padding: 100px 20px;
    position: relative;
}

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

.serve-header {
    margin-bottom: 64px;
}

.serve-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.serve-highlight {
    background: linear-gradient(135deg, rgba(46, 195, 150, 1), rgba(96, 149, 190, 1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.serve-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.serve-row {
    display: grid;
    grid-template-columns: 56px 1fr 1fr 40px;
    align-items: center;
    gap: 0 32px;
    padding: 36px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    text-decoration: none;
    color: inherit;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.serve-row:hover {
    transform: translateX(12px);
}

.serve-row-num {
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Inter', monospace;
    color: rgba(255, 255, 255, 0.2);
    transition: color 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.serve-row:hover .serve-row-num {
    color: rgba(255, 255, 255, 0.8);
}

.serve-row-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text);
    transition: color 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    white-space: nowrap;
}

.serve-row:hover .serve-row-title {
    color: #eef6f8;
}

.serve-row-desc {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.6;
    transition: color 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.serve-row:hover .serve-row-desc {
    color: rgba(255, 255, 255, 0.6);
}

.serve-row-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.85rem;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    justify-self: end;
}

.serve-row:hover .serve-row-arrow {
    border-color: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.05);
}

@media (max-width: 768px) {
    .serve-section {
        padding: 64px 16px;
    }

    .serve-header h2 {
        font-size: 2rem;
    }

    .serve-row {
        grid-template-columns: 40px 1fr 36px;
        grid-template-rows: auto auto;
        gap: 4px 20px;
        padding: 28px 0;
    }

    .serve-row-num {
        grid-row: 1;
    }

    .serve-row-title {
        grid-row: 1;
    }

    .serve-row-arrow {
        grid-row: 1 / 3;
        grid-column: 3;
        width: 36px;
        height: 36px;
    }

    .serve-row-desc {
        grid-column: 1 / 3;
        grid-row: 2;
        padding-top: 4px;
    }
}

/* (Video styles now live inside .why-section block) */

.history-section {
    position: relative;
    padding: 80px 20px;
    background: transparent;
    color: var(--text);
    overflow: hidden;
}

.history-container {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px;
    flex-wrap: wrap;
    position: relative;
}

.history-image {
    flex: 0 0 400px;
    z-index: 2;
}

.history-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(2,6,23,0.5);
    border: 1px solid var(--glass-border);
}

.history-content {
    flex: 1;
    min-width: 300px;
    z-index: 3;
}

.history-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--text);
}

.history-content p {
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.6;
    color: var(--muted);
}

.history-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.private-icon {
    position: absolute;
    right: 49%;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.private-icon.active {
    opacity: 1;
}

.private-column {
    width: 1px;
    padding: 0px;
}

.hero-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 60px;
    width: 100%;
    max-width: 1200px;
}

.home-news-section {
    padding: 80px 20px;
    background: transparent;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin: 40px auto;
    max-width: 100%;
    width: 100%;
}

.news-card {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.news-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.08);
}

.news-card-image {
    width: 100%;
    height: 200px;
    min-height: 200px;
    overflow: hidden;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-card-image img {
    transform: scale(1.05);
}

.news-card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.news-date {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0 0 8px 0;
    height: 30px;
}

.news-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.4;
    height: 60px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    padding: 8px 0 0 0;
}

.news-excerpt {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 0;
    height: 110px;
    padding: 12px 0 0 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    overflow-wrap: break-word;
}

.news-excerpt p {
    margin: 0;
    padding: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.news-link {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 600;
    transition: all 0.2s ease;
}

.news-card:hover .news-link {
    color: rgba(255, 255, 255, 0.8);
    transform: translateX(4px);
}

.news-footer {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

/* Stats Section */
.stats-section {
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, rgba(46, 195, 150, 1), rgba(96, 149, 190, 1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
}

/* ── Section Label ── */
.section-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(46, 195, 150, 0.85);
    margin-bottom: 16px;
}

/* ── Why JP Jenkins Section ── */
.why-section {
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(170deg, rgba(5, 46, 70, 0.35) 0%, rgba(46, 195, 150, 0.06) 40%, transparent 70%);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.why-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
}

.why-glow-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(46, 195, 150, 0.12), transparent 70%);
    top: -100px;
    left: -150px;
}

.why-glow-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(96, 149, 190, 0.1), transparent 70%);
    bottom: -80px;
    right: -100px;
}

.why-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.why-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.why-left {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.why-left h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.why-highlight {
    background: linear-gradient(135deg, rgba(46, 195, 150, 1), rgba(96, 149, 190, 1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-lead {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 480px;
}

/* Stats row */
.why-stats-row {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-bottom: 32px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.why-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.why-stat-num {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, rgba(46, 195, 150, 1), rgba(96, 149, 190, 0.9));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.why-stat-label {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.why-stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
}

/* Feature pills */
.why-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.why-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    font-size: 0.83rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.why-pill:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
}

.why-pill i {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

/* Video right side */
.why-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-video-inner {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.4);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(46, 195, 150, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.why-video-inner iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 1024px) {
    .why-split {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .why-left h2 {
        font-size: 2rem;
    }

    .why-left {
        text-align: center;
        align-items: center;
    }

    .why-lead {
        max-width: 560px;
    }

    .why-stats-row {
        justify-content: center;
    }

    .why-pills {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .why-section {
        padding: 64px 16px;
    }

    .why-left h2 {
        font-size: 1.65rem;
    }

    .why-stats-row {
        gap: 16px;
    }

    .why-stat-num {
        font-size: 1.4rem;
    }

    .why-pills {
        gap: 8px;
    }

    .why-pill {
        padding: 8px 14px;
        font-size: 0.78rem;
    }
}

/* ── Assessment CTA Section ── */
.assessment-cta-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, rgba(46, 195, 150, 0.08) 0%, rgba(96, 149, 190, 0.08) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    text-align: center;
}

.assessment-cta-container {
    max-width: 600px;
    margin: 0 auto;
}

.assessment-cta-container h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
}

.assessment-cta-container p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 24px;
}

.assessment-time-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0;
    background: transparent;
    border: none;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
    margin-top: 16px;
    width: 100%;
}

.assessment-time-badge i {
    font-size: 0.75rem;
    opacity: 0.6;
}

@media (max-width: 768px) {
    .assessment-cta-section {
        padding: 48px 20px;
    }

    .assessment-cta-container h3 {
        font-size: 1.35rem;
    }

    .assessment-cta-container p {
        font-size: 0.95rem;
    }

    .assessment-time-badge {
        font-size: 0.75rem;
    }
}

/* Marketplace Preview Section */
.marketplace-preview-section {
    padding: 0px 20px 80px;
    background: transparent;
}

.marketplace-preview-container {
    max-width: 1400px;
    margin: 0 auto;
}

.marketplace-preview-header {
    text-align: center;
    margin-bottom: 40px;
}

.marketplace-preview-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
}

.marketplace-preview-header p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.6);
}

.marketplace-preview-toggle {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.toggle-marketplace-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    color: var(--text);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-marketplace-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(46, 195, 150, 0.5);
}

.toggle-marketplace-btn .toggle-icon {
    transition: transform 0.3s ease;
}

.toggle-marketplace-btn.active .toggle-icon {
    transform: rotate(180deg);
}

.marketplace-content {
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.3s ease;
}

.marketplace-content.collapsed {
    max-height: 0;
    opacity: 0;
    margin: 0;
    padding: 0;
}

.marketplace-content.expanded {
    max-height: 2000px;
    opacity: 1;
}

.marketplace-cta {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

/* Market Tabs */
.market-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 24px;
    border-bottom: 2px solid rgba(255,255,255,0.08);
}

.market-tab {
    flex: 1;
    background: transparent;
    border: none;
    padding: 16px 20px;
    font-size: 1.05rem;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
}

.market-tab:hover {
    color: rgba(255,255,255,0.75);
    background: rgba(255,255,255,0.02);
}

.market-tab.active {
    color: rgba(255,255,255,0.95);
}

.market-tab[data-tab="mbf"].active {
    border-bottom-color: rgba(96,149,190,0.8);
}

.market-tab[data-tab="private-market"].active {
    border-bottom-color: rgba(46,195,150,0.8);
}

.market-tabs.searching .market-tab {
    color: rgba(255,255,255,0.5);
    border-bottom-color: transparent;
}

/* Marketplace Panels (side-by-side) */
.marketplace-panels {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 32px;
    margin-bottom: 40px;
}

.trade-feed {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 28px 32px;
}

.trade-feed-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.trade-feed-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.trade-feed-pulse {
    width: 8px;
    height: 8px;
    background: rgba(46, 195, 150, 0.9);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(46, 195, 150, 0.4); }
    50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(46, 195, 150, 0); }
}

.trade-feed-title h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin: 0;
}

.trade-feed-count {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(46, 195, 150, 0.85);
    background: rgba(46, 195, 150, 0.1);
    border: 1px solid rgba(46, 195, 150, 0.15);
    padding: 4px 12px;
    border-radius: 20px;
}



.trade-feed-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.trade-feed-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: background 0.2s ease;
}

.trade-feed-item:last-child {
    border-bottom: none;
}

.trade-feed-company {
    display: flex;
    align-items: center;
    gap: 10px;
}

.trade-feed-company-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
}

.trade-feed-ticker {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.04);
    padding: 2px 8px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.trade-feed-details {
    display: flex;
    align-items: center;
    gap: 8px;
}

.trade-feed-date {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 5px;
}

.trade-feed-date i {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.3);
}

.pm-feed-icon-private {
    width: 24px;
    height: 24px;
    background: rgba(96, 149, 190, 0.15);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pm-feed-icon-private i {
    font-size: 0.65rem;
    color: rgba(46, 195, 150, 0.9);
}

.pm-feed-icon-mbf {
    width: 24px;
    height: 24px;
    background: rgba(96, 149, 190, 0.15);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pm-feed-icon-mbf i {
    font-size: 0.65rem;
    color: rgba(96, 149, 190, 0.85);
}

.pm-count-private {
    color: rgba(46, 195, 150, 0.85);
    background: rgba(46, 195, 150, 0.1);
    border-color: rgba(96, 149, 190, 0.15);
}

.pm-count-mbf {
    color: rgba(96, 149, 190, 0.85);
    background: rgba(96, 149, 190, 0.1);
    border-color: rgba(96, 149, 190, 0.15);
}

.pm-market-badge {
    background: rgba(96, 149, 190, 0.1);
    color: rgba(96, 149, 190, 0.85);
}

@media (max-width: 768px) {
    .marketplace-panels {
        grid-template-columns: 1fr;
    }

    .trade-feed {
        padding: 20px 16px;
    }

    .trade-feed-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        padding: 12px 0;
    }

    .trade-feed-details {
        padding-left: 0;
    }
}

/* ── How It Works Section ── */
/* ── How It Works Section ── */
.how-section {
    padding: 100px 20px;
    position: relative;
    background: rgba(255, 255, 255, 0.015);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.how-header {
    margin-bottom: 64px;
}

.how-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.how-highlight {
    background: linear-gradient(135deg, rgba(46, 195, 150, 1), rgba(96, 149, 190, 1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.how-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.how-step {
    padding: 0 28px;
    position: relative;
}

.how-step + .how-step::before {
    content: '';
    position: absolute;
    left: 0;
    top: 56px;
    bottom: 0;
    width: 1px;
    background: rgba(255, 255, 255, 0.05);
}

.how-step-num {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.how-step h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}

.how-step p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 920px) {
    .how-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 0;
    }

    .how-steps::before {
        display: none;
    }

    .how-step:nth-child(odd) {
        border-left: none;
    }
}

@media (max-width: 600px) {
    .how-section {
        padding: 64px 16px;
    }

    .how-header h2 {
        font-size: 2rem;
    }

    .how-steps {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .how-step + .how-step {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        padding-top: 36px;
    }

    .how-step {
        padding: 0;
    }

    .how-step-num {
        font-size: 2.4rem;
        margin-bottom: 16px;
    }
}

.section-header {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
    text-align: center;
    margin-bottom: 12px;
}

.section-subheader {
    text-align: center;
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
}


.trust-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, rgba(46, 195, 150, 0.03) 0%, rgba(96, 149, 190, 0.03) 50%, transparent 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.trust-header {
    margin-bottom: 50px;
}

.trust-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
}

.trust-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
}

.partners-scroll-container {
    overflow: visible;
    margin: 0 -20px;
    padding: 4px 20px 0;
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.partners-scroll-track {
    display: flex;
    gap: 20px;
    width: fit-content;
}

.scroll-right {
    animation: scroll-partners-right 150s linear infinite;
}

.scroll-left {
    animation: scroll-partners-left 150s linear infinite;
}

.partners-scroll-container:hover .partners-scroll-track {
    animation-play-state: paused;
}

.partners-scroll-track .partner-card {
    flex-shrink: 0;
    width: 220px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    padding: 28px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.partners-scroll-track .partner-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.partner-name-display {
    font-size: 15px;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    text-align: center;
    line-height: 1.4;
}

.partners-scroll-track .partner-card:hover .partner-name-display {
    color: rgba(255, 255, 255, 0.95);
}

@keyframes scroll-partners-right {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes scroll-partners-left {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}


.history-badge {
    display: inline-block;
    background: rgba(46, 195, 150, 0.15);
    border: 1px solid rgba(46, 195, 150, 0.3);
    color: rgba(46, 195, 150, 0.95);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.final-cta-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, rgba(46, 195, 150, 0.1) 0%, rgba(96, 149, 190, 0.1) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

/* Match fit CTA to final CTA styling */
.fit-cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(46, 195, 150, 0.08) 0%, rgba(96, 149, 190, 0.08) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    text-align: center;
}

.fit-cta-section .final-cta-container { max-width: 900px; }
.fit-cta-section h2 { font-size: 1.9rem; margin-bottom: 12px; }
.fit-cta-section p { font-size: 1.05rem; margin-bottom: 28px; color: rgba(255,255,255,0.75); }

.final-cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.final-cta-container h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
}

.final-cta-container p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

.final-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

@media (max-width: 1400px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-container {
        gap: 40px;
    }
}

@media (max-width: 1024px) {
}

@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
    }

    .home-news-section {
        padding: 60px 20px;
    }

    .news-card-content {
        padding: 20px;
    }

    .news-card h3 {
        font-size: 1.1rem;
    }

    .news-excerpt {
        font-size: 0.9rem;
    }
    
    .stats-container {
        gap: 30px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .stat-number {
        font-size: 2.25rem;
    }
    
    .how-it-works-header h2,
    .marketplace-preview-header h2,
    .final-cta-container h2 {
        font-size: 1.75rem;
    }
    
    .partners-scroll-track .partner-card {
        width: 180px;
        padding: 20px 16px;
        min-height: 80px;
    }

    .partner-name-display {
        font-size: 14px;
    }
    
    .hero h1 {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 1.05rem !important;
    }
    
    .hero-btn.large {
        padding: 14px 28px;
        font-size: 0.95rem;
    }
    
    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta-secondary {
        flex-direction: column;
        align-items: center;
    }
    
    .final-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}
