
.hero-section {
    padding: 0;
    background: 
        linear-gradient(to bottom, transparent 0%, transparent 100%),
        radial-gradient(circle at 1px 1px, rgba(96,149,190,0.15) 1px, transparent 1px);
    background-size: 100% 100%, 40px 40px;
    -webkit-mask-image: linear-gradient(to bottom, black 0%, black 85%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 0%, black 85%, transparent 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(96,149,190,0.28) 0%, rgba(96,149,190,0.12) 40%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    box-shadow: 0 0 100px rgba(96,149,190,0.3), 0 0 200px rgba(96,149,190,0.15);
    z-index: 0;
    animation: float-blob 18s ease-in-out infinite;
}

.hero-section::before {
    content: '';
    position: absolute;
    bottom: 10%;
    left: 5%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(46,195,150,0.25) 0%, rgba(46,195,150,0.1) 40%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    box-shadow: 0 0 100px rgba(46,195,150,0.25), 0 0 200px rgba(46,195,150,0.12);
    z-index: 0;
    animation: float-blob-reverse 22s ease-in-out infinite;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 120px 20px 100px;
    z-index: 10;
}

.hero {
    z-index: 2;
    max-width: 800px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(96,149,190,0.35), rgba(46,195,150,0.28));
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    filter: blur(40px);
    animation: morph-shape 8s ease-in-out infinite;
    z-index: -1;
}

.hero-image {
    display: none;
}

.hero h1 {
    font-size: 48px;
    line-height: 1.1;
    margin: 0 0 16px;
    font-weight: 800;
    color: var(--text);
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,255,255,0.7));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.hero h2 {
    font-size: 20px;
    margin: 0 0 20px;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: 0.3px;
}

.hero p {
    font-size: 17px;
    max-width: 680px;
    color: #d7e3e7;
    margin: 0 auto 32px;
    line-height: 1.6;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(46,195,150,0.9), rgba(96,149,190,0.85));
    color: #ffffff;
    font-weight: 700;
    font-size: 16px;
    border: none;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(46,195,150,0.2), 0 0 40px rgba(96,149,190,0.15);
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.hero-btn:hover::before {
    width: 300px;
    height: 300px;
}

.hero-btn:hover {
    background: linear-gradient(90deg, rgba(46,195,150,1), rgba(96,149,190,0.95));
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(46,195,150,0.25), 0 0 50px rgba(96,149,190,0.25);
}

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

.benefit-card {
    background: linear-gradient(180deg, var(--panel), rgba(255,255,255,0.005));
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 24px 20px;
    text-align: center;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    box-shadow: 0 4px 16px rgba(2,6,23,0.3);
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(2,6,23,0.4);
    border-color: rgba(46,195,150,0.2);
}

.benefit-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 8px 0;
}

.benefit-text {
    font-size: 13px;
    color: var(--muted);
    margin: 0;
    line-height: 1.4;
}

/* Section Navigation */
.section-nav {
    background-color: transparent;
    padding: 30px 20px;
    position: relative;
    border-top: 1px solid rgba(96,149,190,0.2);
}
.section-nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}
.section-nav-link {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #b8c8d0;
    text-decoration: none;
    border-radius: 8px;
    transition: all .2s ease;
    border: 1px solid transparent;
    letter-spacing: 0.3px;
}
.section-nav-link:hover {
    color: #ffffff;
    background: rgba(46,195,150,0.12);
    border-color: rgba(46,195,150,0.3);
}

.how-it-works {
    background-color: transparent;
    padding: 50px 20px;
    position: relative;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
    z-index: 0;
}
.how-it-works-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 28px;
    position: relative;
    z-index: 1;
}
.how-it-works-header {
    text-align: center;
    margin-bottom: 6px;
}
.section-header {
    font-size: 2rem;
    margin: 0;
    color: var(--text);
    text-align: center;
    font-weight: 700;
}
.section-subtext {
    color: var(--muted);
    max-width: 900px;
    margin: 6px auto 0;
    font-size: 15px;
    text-align: center;
}

.section-subtext-left {
    color: var(--muted);
    max-width: 900px;
    font-size: 15px;
}

.section-bubble{
    width: fit-content;
    border: 1px solid rgba(46,195,150,0.15);
    background: rgba(46,195,150,0.04);
    border-radius: 20px;
    margin: 30px auto;
    padding: 8px 16px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.8px;
    box-shadow: none;
    color: rgba(46,195,150,0.9);
    text-transform: uppercase;
}

.hw-enum{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 8px 30px;
    font-weight: 700;
    font-size: 0.9rem;
    background: var(--panel);
    letter-spacing: 1.2px;
    margin: 10px 0px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 4px;
}
.step {
    position: relative;
    background: linear-gradient(180deg, var(--panel), rgba(255,255,255,0.005));
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 20px;
    transition: transform .18s ease, box-shadow .18s ease;
    box-shadow: 0 8px 28px rgba(2,6,23,0.4);
    min-height: 160px;
    display: flex;
    flex-direction: column;
}
.step:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 44px rgba(2,6,23,0.5);
}

.step:nth-child(1) {
    border-color: rgba(46,195,150,0.3);
    box-shadow: 0 8px 28px rgba(2,6,23,0.4), 0 0 30px rgba(46,195,150,0.2);
}
.step:nth-child(1):hover {
    box-shadow: 0 14px 44px rgba(2,6,23,0.5), 0 0 40px rgba(46,195,150,0.3);
}
.step:nth-child(1)::before {
    background: linear-gradient(90deg, rgba(46,195,150,0.9), rgba(46,195,150,0.6));
}

.step:nth-child(2) {
    border-color: rgba(96,149,190,0.3);
    box-shadow: 0 8px 28px rgba(2,6,23,0.4), 0 0 30px rgba(96,149,190,0.2);
}
.step:nth-child(2):hover {
    box-shadow: 0 14px 44px rgba(2,6,23,0.5), 0 0 40px rgba(96,149,190,0.3);
}
.step:nth-child(2)::before {
    background: linear-gradient(90deg, rgba(96,149,190,0.9), rgba(96,149,190,0.6));
}

.step:nth-child(3) {
    border-color: rgba(147,112,219,0.3);
    box-shadow: 0 8px 28px rgba(2,6,23,0.4), 0 0 30px rgba(147,112,219,0.2);
}
.step:nth-child(3):hover {
    box-shadow: 0 14px 44px rgba(2,6,23,0.5), 0 0 40px rgba(147,112,219,0.3);
}
.step:nth-child(3)::before {
    background: linear-gradient(90deg, rgba(147,112,219,0.9), rgba(147,112,219,0.6));
}

.step:nth-child(4) {
    border-color: rgba(255,159,64,0.3);
    box-shadow: 0 8px 28px rgba(2,6,23,0.4), 0 0 30px rgba(255,159,64,0.2);
}
.step:nth-child(4):hover {
    box-shadow: 0 14px 44px rgba(2,6,23,0.5), 0 0 40px rgba(255,159,64,0.3);
}
.step:nth-child(4)::before {
    background: linear-gradient(90deg, rgba(255,159,64,0.9), rgba(255,159,64,0.6));
}

.step:nth-child(5) {
    border-color: rgba(255,99,132,0.3);
    box-shadow: 0 8px 28px rgba(2,6,23,0.4), 0 0 30px rgba(255,99,132,0.2);
}
.step:nth-child(5):hover {
    box-shadow: 0 14px 44px rgba(2,6,23,0.5), 0 0 40px rgba(255,99,132,0.3);
}
.step:nth-child(5)::before {
    background: linear-gradient(90deg, rgba(255,99,132,0.9), rgba(255,99,132,0.6));
}

.step:nth-child(6) {
    border-color: rgba(75,192,192,0.3);
    box-shadow: 0 8px 28px rgba(2,6,23,0.4), 0 0 30px rgba(75,192,192,0.2);
}
.step:nth-child(6):hover {
    box-shadow: 0 14px 44px rgba(2,6,23,0.5), 0 0 40px rgba(75,192,192,0.3);
}
.step:nth-child(6)::before {
    background: linear-gradient(90deg, rgba(75,192,192,0.9), rgba(75,192,192,0.6));
}

.step::before {
    content: "";
    position: absolute;
    left: 18px;
    top: 16px;
    width: 46px;
    height: 4px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--accent), #9fb6bd);
}

.step h3 {
    font-size: 18px;
    margin: 10px 0 6px;
    color: var(--text);
    font-weight: 800;
}
.step h4 {
    font-size: 13px;
    margin: 0 0 10px;
    color: var(--muted);
    font-weight: 600;
}
.step p {
    font-size: 14px;
    color: #d7e3e7;
    margin: 6px 0;
    line-height: 1.5;
}

.how-it-works-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 32px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.how-it-works-actions .hero-btn {
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
}

.how-it-works-actions .hero-btn.primary {
    background: rgba(46,195,150,0.08);
    color: rgba(46,195,150,0.95);
    border: 1px solid rgba(46,195,150,0.2);
    box-shadow: none;
}

.how-it-works-actions .hero-btn.primary:hover {
    background: rgba(46,195,150,0.12);
    border-color: rgba(46,195,150,0.3);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(46,195,150,0.15);
}

.how-it-works-actions .hero-btn.secondary {
    background: rgba(96,149,190,0.08);
    color: rgba(96,149,190,0.95);
    border: 1px solid rgba(96,149,190,0.2);
    box-shadow: none;
}

.how-it-works-actions .hero-btn.secondary:hover {
    background: rgba(96,149,190,0.12);
    border-color: rgba(96,149,190,0.3);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(96,149,190,0.15);
}

.how-it-works-footer {
    text-align: center;
    font-size: 17px;
    color: var(--muted);
    margin-top: 0;
}

.pricing-container {
    max-width: 1200px;
    margin: 28px auto;
    padding: 0 0px 48px;
    position: relative;
}

#pricing {
    background-color: transparent;
    padding: 0px 0;
    position: relative;
}

#pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
    z-index: 0;
}

#pricing > * {
    position: relative;
    z-index: 1;
}

.hero-btn:focus,
.hero-btn:active {
    outline: 3px solid rgba(46,195,150,0.14);
    outline-offset: 2px;
}

.pricing-card {
    max-width: 1200px;
    margin: 28px auto;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
    padding: 20px 20px 8px 20px;
    box-shadow: 0 4px 12px rgba(2,6,23,0.15);
    box-sizing: border-box;
}

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

.pricing-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;
}

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

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

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

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

/* Pricing Content Panels */
.pricing-content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.pricing-content.active {
    display: block;
}

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


.pricing-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.pricing-label {
    display: block;
    padding: 16px 0 24px 0;
    margin-bottom: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    border-bottom: 2px solid rgba(46, 195, 150, 0.3);
    letter-spacing: 0.5px;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
    font-size: 15px;
    color: var(--text);
}

.pricing-table thead th {
    position: sticky;
    top: 0;
    z-index: 4;
    text-align: left;
    padding: 12px 14px;
    background: var(--header-bg);
    color: var(--text);
    font-weight: 700;
    letter-spacing: 0.2px;
    border-bottom: 1px solid var(--th-border);
    backdrop-filter: blur(2px);
}

.pricing-table thead th.package {
    text-align: center;
    font-size: 15px;
    color: var(--primary);
    background: rgba(255,255,255,0.01);
}

.pricing-table tbody tr {
    border-bottom: 1px solid rgba(255,255,255,0.02);
    background: transparent;
}
.pricing-table tbody tr:nth-child(even) {
    background: var(--row-alt);
}
.pricing-table td {
    padding: 12px 14px;
    vertical-align: top;
    color: #cfe7ea;
}

.pricing-table tbody td:nth-child(2),
.pricing-table tbody td:nth-child(3) {
    text-align: left;
    vertical-align: top;
}

.pricing-table td.price {
    font-weight: 700;
    color: var(--text);
    background: transparent;
    text-align: left;
    border-radius: 6px;
    padding: 10px 14px;
    box-shadow: none;
}

.badge {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 999px;
    font-weight: 700;
    color: var(--accent);
    background: rgba(47,190,148,0.03);
    border: 1px solid rgba(47,190,148,0.04);
    font-size: 13px;
    box-shadow: none;
}

.pricing-table .note {
    color: var(--muted);
    font-size: 13px;
    padding: 10px 14px;
}

.tiered {
    margin-top: 14px;
    width: 100%;
    border-collapse: collapse;
    background: transparent;
    border-radius: 8px;
}
.tiered thead th {
    background: rgba(26, 28, 29, 0.3);
    color: var(--text);
    padding: 10px;
    text-align: left;
    font-weight: 700;
    border-bottom: 1px solid var(--th-border);
}
.tiered td {
    padding: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.02);
    color: #d7e7e7;
}

.third-party {
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.third-party .item {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 8px;
    background: rgba(255,255,255,0.01);
    border: 1px solid rgba(255,255,255,0.02);
    color: #dbeef0;
}
.third-party .price {
    color: var(--accent);
    font-weight: 600;
    background: transparent;
    border: none;
}

.pricing-table tbody tr:hover {
    background: rgba(255,255,255,0.015);
}

.table-caption {
    font-size: 13px;
    color: var(--muted);
    margin-top: 8px;
}

.companies-case-studies {
    padding: 40px 20px;
    background-color: transparent;
    position: relative;
}

.companies-case-studies::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
    z-index: 0;
}
.case-studies-inner {
    max-width: 1300px;
    margin: 0 auto;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}
.cs-carousel {
    display:flex;
    align-items:center;
    gap:12px;
    position:relative;
    justify-content:center;
    margin-top: 24px;
}
.cs-track-wrapper {
    overflow:hidden;
    flex:1;
    width:100%;
}
.cs-track {
    display:flex;
    gap:18px;
    padding: 0;
    list-style:none;
    margin:0;
    transition: transform .4s ease;
}
/* One case study per slide */
.cs-slide {
    flex: 0 0 100%;
    width: 100%;
    box-sizing: border-box;
    height: 560px;
}
.case-card{
    background: linear-gradient(135deg, 
        rgba(255,255,255,0.03) 0%, 
        rgba(255,255,255,0.02) 50%,
        rgba(255,255,255,0.01) 100%);
    border-radius: 16px;
    padding: 28px;
    display:flex;
    gap:24px;
    align-items:flex-start;
    border: 1px solid rgba(255,255,255,0.04);
    box-shadow: 0 4px 16px rgba(2,6,23,0.15);
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    transition: all .3s ease;
    backdrop-filter: blur(10px);
    /* constrain carousel cards to align with pricing charts (wider) */
    max-width: 1220px;
    margin: 0 auto;
}
.case-card:hover{
    border-color: rgba(96,149,190,0.12);
    box-shadow: 0 6px 24px rgba(2,6,23,0.2);
}

.case-photo{
    width: 280px;
    min-width: 280px;
    min-height: 220px;
    background: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
    display:flex;
    align-items:center;
    justify-content:center;
    color: var(--muted);
    font-size: 14px;
    text-align: center;
    padding: 14px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(96,149,190,0.04);
}
.case-photo img{ width:100%; height:100%; object-fit:contain; display:block; border-radius:10px; background-color: white; padding: 14px; box-sizing: border-box; }
.case-photo img:not([src]),
.case-photo img[src=""]{ display:none; }
.case-content {
    flex: 1 1 auto;
    overflow:auto;
    padding-right: 6px;
}
.case-content h3{ margin:0 0 10px; font-size:18px; color:var(--text); }
.case-key{
    display:flex;
    flex-direction:column;
    gap:6px;
    font-size: 13px;
    color: #d0dfe3;
    margin-bottom: 12px;
    padding: 14px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(96,149,190,0.04), rgba(46,195,150,0.03));
    border: 1px solid rgba(255,255,255,0.04);
}
.case-body {
    color:#cfe7ea;
    font-size:14px;
    margin:6px 0;
    line-height:1.6;
}
.cs-control {
    background:transparent;
    border:1px solid rgba(255,255,255,0.04);
    width:44px;
    height:44px;
    border-radius:44px;
    font-size:26px;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    color:var(--text);
}
.cs-control:hover {
    background:rgba(46,195,150,0.06);
    border-color:rgba(46,195,150,0.12);
}
.cs-indicators {
    display:flex;
    gap:10px;
    justify-content:center;
    margin-top:16px;
}
.cs-dot{
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.10);
    cursor: pointer;
    box-shadow: none;
    transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.cs-dot:hover{
    transform: translateY(-1px) scale(1.08);
    border-color: rgba(255,255,255,0.22);
}
.cs-dot.active{
    width: 26px;
    background: linear-gradient(90deg, rgba(96,149,190,0.35), rgba(46,195,150,0.25));
    border-color: rgba(96,149,190,0.40);
    box-shadow: 0 0 12px rgba(96,149,190,0.3);
}
.cs-dot:focus-visible{
    outline: 3px solid rgba(96,149,190,0.20);
    outline-offset: 3px;
}

.cs-disclaimer{
    margin: 14px auto 0;
    max-width: 900px;
    font-size: 13px;
    color: var(--muted);
    text-align: center;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: none;
}

.companies-join-cta{
    padding: 0 20px;
    background-color: transparent;
    color: #fff;
    position: relative;
}

.companies-join-inner{ 
    max-width: 1200px; 
    margin: 0 auto; 
    display: flex; 
    justify-content: center; 
    position: relative; 
    z-index: 1;
}
.join-card{ 
    background: linear-gradient(135deg, rgba(46,195,150,0.04), rgba(96,149,190,0.03));
    padding: 40px 0px; 
    border-radius: 12px;
    text-align: center; 
    max-width: 1200px; 
    width: 100%; 
    box-sizing: border-box; 
    border: 1px solid rgba(46,195,150,0.08);
    box-shadow: 0 4px 16px rgba(2,6,23,0.2);
    margin-top: -1px;
}
.join-card h2{ 
    font-size: 24px; 
    margin-bottom: 16px; 
    font-weight: 700; 
    letter-spacing: -0.2px;
    color: var(--text);
}
.join-card p{ 
    color: var(--muted); 
    margin-bottom: 28px; 
    font-size: 15px; 
    line-height: 1.6; 
    font-weight: 400; 
    max-width: 800px; 
    margin-left: auto; 
    margin-right: auto; 
}
.join-actions{ 
    display: flex; 
    gap: 14px; 
    justify-content: center; 
    flex-wrap: wrap; 
}
.join-actions .hero-btn{
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 8px;
}
.join-actions .hero-btn:first-child {
    background: linear-gradient(90deg, rgba(46,195,150,0.9), rgba(96,149,190,0.85));
    box-shadow: 0 8px 24px rgba(46,195,150,0.2), 0 0 40px rgba(96,149,190,0.15);
}
.join-actions .hero-btn:first-child:hover {
    box-shadow: 0 12px 32px rgba(46,195,150,0.3), 0 0 60px rgba(96,149,190,0.2);
}
.hero-btn.ghost {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text);
    box-shadow: none;
}
.hero-btn.ghost:hover {
    border-color: rgba(96,149,190,0.3);
    color: #ffffff;
    background: rgba(96,149,190,0.08);
    box-shadow: 0 4px 16px rgba(96,149,190,0.15);
}

.marketplace-cta {
    padding: 40px 20px;
    background-color: transparent;
    position: relative;
}

.marketplace-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
    z-index: 0;
}
.marketplace-cta-inner{
    max-width: 1200px;
    margin: 0 auto;
    display: block;
    position: relative;
    z-index: 1;
}

.marketplace-intro {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto 52px;
}
.marketplace-cards {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 28px;
    align-items: stretch;
    margin-top: 18px;
}
.marketplace-card {
    background: linear-gradient(180deg, var(--panel), rgba(255,255,255,0.01));
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    padding: 22px;
    box-shadow: 0 20px 60px rgba(2,6,23,0.25);
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    flex:1 1 48%;
    min-height: 240px;
    transform: translateY(-18px);
}
.marketplace-card .card-title {
    font-size:20px;
    margin:0 0 8px;
    color:var(--text);
    font-weight:800;
}
.marketplace-card .card-features {
    margin:0 0 16px 0;
    padding-left:18px;
    color:var(--muted);
}
.marketplace-card .card-features li{ margin:16px 0; }
.marketplace-card .card-cta {
    display:flex;
    justify-content:flex-end;
}
.marketplace-card .hero-btn {
    width: auto;
    padding: 12px 20px;
    border-radius:999px;
    font-weight:700;
}

.marketplace-card.mbf-card {
    border: 2px solid rgba(96,149,190,0.4);
    box-shadow: 0 20px 60px rgba(2,6,23,0.25), 0 0 30px rgba(96,149,190,0.25), inset 0 1px 0 rgba(96,149,190,0.1);
}

.marketplace-card.pm-card {
    border: 2px solid rgba(46,195,150,0.4);
    box-shadow: 0 20px 60px rgba(2,6,23,0.25), 0 0 30px rgba(46,195,150,0.25), inset 0 1px 0 rgba(46,195,150,0.1);
}

.hero-btn.mbf-btn {
    background: linear-gradient(90deg, rgba(96,149,190,0.9), rgba(96,149,190,0.8));
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(96,149,190,0.15);
    border: none;
}
.hero-btn.mbf-btn:hover {
    background: linear-gradient(90deg, rgba(96,149,190,1), rgba(96,149,190,0.92));
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(96,149,190,0.22);
}
.hero-btn.mbf-btn:focus {
    outline: 3px solid rgba(96,149,190,0.14);
    outline-offset: 2px;
}

.hero-btn.pisces-btn {
    background: linear-gradient(90deg, rgba(46,195,150,0.85), rgba(46,195,150,0.75));
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(46,195,150,0.15);
    border: none;
}
.hero-btn.pisces-btn:hover {
    background: linear-gradient(90deg, rgba(46,195,150,0.95), rgba(46,195,150,0.88));
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(46,195,150,0.22);
}
.hero-btn.pisces-btn:focus {
    outline: 3px solid rgba(46,195,150,0.14);
    outline-offset: 2px;
}

.marketplace-card.mbf-card:hover {
    border-color: rgba(96,149,190,0.6);
    box-shadow: 0 24px 72px rgba(2,6,23,0.3), 0 0 40px rgba(96,149,190,0.35), inset 0 1px 0 rgba(96,149,190,0.15);
    transform: translateY(-20px);
    transition: all 0.3s ease;
}

.marketplace-card.pm-card:hover {
    border-color: rgba(46,195,150,0.6);
    box-shadow: 0 24px 72px rgba(2,6,23,0.3), 0 0 40px rgba(46,195,150,0.35), inset 0 1px 0 rgba(46,195,150,0.15);
    transform: translateY(-20px);
    transition: all 0.3s ease;
}

.offering-cell{
    text-align: left;
}

@media (max-width: 1000px) {
    .hero-section {
        -webkit-mask-image: none;
        mask-image: none;
    }
}

@media (max-width: 920px){
    .cs-slide {
    flex:0 0 100%;
    height: auto;
}
    .case-card {
    flex-direction:column;
    align-items:center;
}
    .case-photo {
    width:100%;
    min-width: 0;
    min-height:180px;
}
    .case-content {
    width:100%;
}
    .cs-control {
    display:none;
}
}
@media (max-width: 720px){
    .companies-join-cta {
    margin-top: -10px;
}
    .marketplace-card {
    padding: 32px 24px;
}
    .join-card {
    padding: 24px 20px 28px;
    border-radius: 8px;
}
    .join-card h2{ font-size: 18px; }
    .join-card p{ font-size: 13px; margin-bottom: 18px; }
    .join-actions {
    flex-direction: column;
    gap: 10px;
}
    .join-actions .hero-btn {
    width: 100%;
    justify-content: center;
}
    .pricing-card {
    padding: 14px 14px 6px 14px;
}
}
@media (max-width: 920px){
    .marketplace-cta-inner {
    flex-direction: column;
    align-items: stretch;
}
    .marketplace-right {
    align-items: stretch;
    flex: none;
}
    .marketplace-right .hero-btn {
    width: 100%;
}
}
@media (max-width: 720px) {
    .pricing-table,
    .tiered {
    min-width: 100%;
}
    .pricing-table thead {
        display: none;
    }
    .pricing-table tbody tr {
        display: block;
        margin-bottom: 12px;
        border-radius: 8px;
        background: rgba(255,255,255,0.01);
        padding: 10px;
    }
    .pricing-table tbody td {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        padding: 8px 12px;
    }
    .pricing-table tbody td::before {
        content: attr(data-label);
        color: var(--muted);
        font-weight: 600;
        min-width: 200px;
        margin-right: 8px;
        flex-shrink: 0;
        line-height: 1.5;
    }
    .pricing-table tbody tr td:nth-child(2)::before {
        content: 'Standard: ' attr(data-label);
    }
    .pricing-table tbody tr td:nth-child(3)::before {
        content: 'Premium: ' attr(data-label);
    }
    .pricing-table tbody tr.buy-sell-header {
        display: none;
    }
    .pricing-table tbody tr.buy-sell-row td:nth-child(2)::before {
        content: 'Buy Side: ' attr(data-label);
    }
    .pricing-table tbody tr.buy-sell-row td:nth-child(3)::before {
        content: 'Sell Side: ' attr(data-label);
    }
    .pricing-card {
    padding: 14px;
}
}
@media (max-width: 1150px) {
    .hero-container {
        padding: 100px 20px 60px;
    }
}

@media (max-width: 920px) {
    .hero-container {
        padding: 80px 20px 50px;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero h2 {
        font-size: 18px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .hero-benefits {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        margin-top: 40px;
    }
}

@media (max-width: 520px) {
    .hero-section {
        -webkit-mask-image: none;
        mask-image: none;
    }
    
    .hero-container {
        padding: 60px 20px 40px;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .hero h2 {
        font-size: 16px;
    }
    
    .hero p {
        font-size: 15px;
    }
    
    .steps {
        gap: 12px;
    }
    
    .step {
        padding: 16px;
        min-height: auto;
    }
    
    .hero-benefits {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .benefit-card {
        padding: 18px 16px;
    }
    
    .benefit-title {
        font-size: 15px;
    }
    
    .hero-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 28px;
    }
}
@media (min-width: 1100px){
    .marketplace-cta {
    padding: 64px 20px;
}
    .marketplace-card {
    padding: 28px;
    min-height: 280px;
}
}
@media (max-width: 920px){
    .marketplace-cards {
    flex-direction: column;
    gap: 18px;
}
    .marketplace-card {
    transform: none;
}
    .marketplace-card .card-cta {
    justify-content: center;
}
}

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

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

@keyframes float-blob {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    25% {
        transform: translate(50px, -40px) scale(1.15) rotate(5deg);
    }
    50% {
        transform: translate(-30px, 30px) scale(0.85) rotate(-5deg);
    }
    75% {
        transform: translate(40px, 20px) scale(1.05) rotate(3deg);
    }
}

@keyframes float-blob-reverse {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    25% {
        transform: translate(-45px, 35px) scale(0.9) rotate(-5deg);
    }
    50% {
        transform: translate(35px, -30px) scale(1.1) rotate(5deg);
    }
    75% {
        transform: translate(-20px, 25px) scale(0.95) rotate(-3deg);
    }
}

@keyframes morph-shape {
    0%, 100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        transform: translateX(-50%) rotate(0deg);
    }
    25% {
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
        transform: translateX(-50%) rotate(90deg);
    }
    50% {
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
        transform: translateX(-50%) rotate(180deg);
    }
    75% {
        border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
        transform: translateX(-50%) rotate(270deg);
    }
}

@keyframes drift-pattern {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 60px 60px;
    }
}

@keyframes drift-lines {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 200px 200px;
    }
}

@keyframes drift-grid {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100px 100px;
    }
}

@keyframes drift-diagonal {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 160px 160px;
    }
}

.mbf-pricing-section {
    margin-top: 40px;
    padding: 32px;
    background: rgba(96,149,190,0.06);
    border: 1px solid rgba(96,149,190,0.15);
    border-radius: 12px;
    text-align: center;
}

.mbf-pricing-section h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 12px 0;
}

.mbf-pricing-section p {
    font-size: 1rem;
    color: var(--muted);
    margin: 0;
    line-height: 1.6;
}

.pm-pricing-section {
    margin-top: 40px;
    padding: 32px;
    background: rgba(46,195,150,0.06);
    border: 1px solid rgba(46,195,150,0.15);
    border-radius: 12px;
    text-align: center;
}

.pm-pricing-section h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: rgba(46,195,150,0.95);
    margin: 0 0 12px 0;
}

.pm-pricing-section p {
    font-size: 1rem;
    color: var(--muted);
    margin: 0;
    line-height: 1.6;
}

.contact-link {
    color: rgba(46,195,150,0.9);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(46,195,150,0.3);
}

.contact-link:hover {
    color: rgba(46,195,150,1);
    border-bottom-color: rgba(46,195,150,0.6);
}

.market-badge {
    display: inline-block;
    background: rgba(46,195,150,0.1);
    border: 1px solid rgba(46,195,150,0.3);
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(46,195,150,0.9);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.market-badge-mbf {
    background: linear-gradient(135deg, rgba(96,149,190,0.22), rgba(96,149,190,0.12));
    border-color: rgba(96,149,190,0.32);
    color: rgba(96,149,190,1);
}

.market-badge-pisces {
    background: rgba(46,195,150,0.1);
    border-color: rgba(46,195,150,0.3);
    color: rgba(46,195,150,0.9);
}
