/*! https://www.vancheer.com 
 * Copyright (c) VANCHEERABO. All rights reserved.
 * https://www.vancheer.com */

@charset "utf-8";

/*! default start */



/*! default end */

/*! HTML - Pipeline start */

.wondercel-pipeline-page {
    --navy: #0B1D3A;
    --navy-light: #132D5E;
    --teal: #00B4D8;
    --teal-dark: #0096B7;
    --teal-light: #90E0EF;
    --teal-bg: rgba(0,180,216,0.08);
    --coral: #E8636F;
    --purple: #7B61FF;
    --purple-light: #C9B8FF;
    --purple-bg: rgba(123,97,255,0.08);
    --amber: #F4A261;
    --green: #2EC4B6;
    --white: #FFFFFF;
    --gray-50: #F7F9FB;
    --gray-100: #E8ECF1;
    --gray-200: #CBD5E1;
    --gray-300: #94A3B8;
    --gray-400: #64748B;
    --gray-500: #475569;
    --gray-600: #334155;
    --gray-700: #1E293B;

    /*
        These two values control only the top "Our Pipeline" heading
        and its short intro text.
    */
    --pipeline-main-heading-size: 0.4rem;
    --pipeline-main-intro-size: 0.1rem;

    font-family: inherit;
    background: var(--white);
    color: var(--gray-700);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.wondercel-pipeline-page,
.wondercel-pipeline-page * {
    box-sizing: border-box;
}

.wondercel-pipeline-page section,
.wondercel-pipeline-page div,
.wondercel-pipeline-page h1,
.wondercel-pipeline-page h2,
.wondercel-pipeline-page h3,
.wondercel-pipeline-page p,
.wondercel-pipeline-page table,
.wondercel-pipeline-page thead,
.wondercel-pipeline-page tbody,
.wondercel-pipeline-page tr,
.wondercel-pipeline-page th,
.wondercel-pipeline-page td {
    margin: 0;
    padding: 0;
}

/* ===== INTEGRATED PAGE HEADING ===== */

.wondercel-pipeline-page .hero {
    background: #ffffff;
    padding: 32px 48px 28px;
    text-align: center;
    position: relative;
    overflow: visible;
}

.wondercel-pipeline-page .hero::before,
.wondercel-pipeline-page .hero::after {
    display: none;
    content: none;
}

.wondercel-pipeline-page .hero-content {
    max-width: 760px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.wondercel-pipeline-page .hero-label {
    display: none;
}

/*
    Important:
    This targets ONLY the top "Our Pipeline" heading.
    It will not affect "Clinical & Preclinical Pipeline"
    or the platform headings.
*/
.wondercel-pipeline-page .pipeline-main-heading {
    color: #000000;
    font-family: "MiSans Semibold", "MiSans", sans-serif;
    font-size: var(--pipeline-main-heading-size);
    line-height: 1.2;
    font-weight: 400;
    letter-spacing: normal;
    text-align: center;
    margin: 0;
}

/*
    Important:
    This targets ONLY the intro paragraph under "Our Pipeline".
*/
.wondercel-pipeline-page .pipeline-main-intro {
    color: #555555;
    font-family: inherit;
    font-size: var(--pipeline-main-intro-size);
    line-height: 1.4;
    font-weight: 400;
    max-width: 680px;
    margin: 8px auto 0;
    text-align: center;
}

/* ===== PIPELINE SECTION ===== */

.wondercel-pipeline-page .pipeline-section {
    padding: 32px 48px 80px;
    max-width: 1320px;
    margin: 0 auto;
}

.wondercel-pipeline-page .section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 36px;
}

/*
    Restores the actual pipeline section heading.
    This prevents it from becoming skinny/small.
*/
.wondercel-pipeline-page .section-header h2 {
    font-size: 24px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.02em;
}

/* ===== LEGEND ===== */

.wondercel-pipeline-page .legend {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.wondercel-pipeline-page .legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--gray-400);
    font-weight: 500;
}

.wondercel-pipeline-page .legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 3px;
}

/* ===== STATS BAR ===== */

.wondercel-pipeline-page .stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 48px;
}

.wondercel-pipeline-page .stat-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    opacity: 0;
    transform: translateY(12px);
    animation: wondercel-fadeInCard 0.5s ease forwards;
}

.wondercel-pipeline-page .stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.wondercel-pipeline-page .stat-number {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 4px;
}

.wondercel-pipeline-page .stat-number.teal {
    color: var(--teal);
}

.wondercel-pipeline-page .stat-number.navy {
    color: var(--navy);
}

.wondercel-pipeline-page .stat-number.purple {
    color: var(--purple);
}

.wondercel-pipeline-page .stat-number.coral {
    color: var(--coral);
}

.wondercel-pipeline-page .stat-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ===== PLATFORM SECTION ===== */

.wondercel-pipeline-page .platform-section {
    margin-bottom: 40px;
}

.wondercel-pipeline-page .platform-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--gray-100);
}

.wondercel-pipeline-page .platform-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.wondercel-pipeline-page .platform-icon.allo {
    background: var(--teal-bg);
    color: var(--teal);
}

.wondercel-pipeline-page .platform-icon.itreg {
    background: var(--purple-bg);
    color: var(--purple);
}

.wondercel-pipeline-page .platform-title {
    font-size: 18px;
    line-height: 1.25;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.01em;
}

.wondercel-pipeline-page .platform-subtitle {
    font-size: 12px;
    line-height: 1.45;
    color: var(--gray-400);
    font-weight: 400;
    margin-top: 2px;
}

/* ===== PIPELINE TABLE ===== */

.wondercel-pipeline-page .pipeline-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--gray-100);
    box-shadow: 0 1px 3px rgba(0,0,0,0.03), 0 4px 12px rgba(0,0,0,0.02);
}

.wondercel-pipeline-page .pipeline-table thead th {
    background: var(--gray-50);
    padding: 12px 16px;
    font-size: 10px;
    font-weight: 700;
    color: var(--gray-300);
    text-transform: uppercase;
    letter-spacing: 0.10em;
    text-align: left;
    border-bottom: 1px solid var(--gray-100);
    white-space: nowrap;
}

.wondercel-pipeline-page .pipeline-table thead th.stage-header {
    text-align: center;
    padding: 12px 8px;
}

.wondercel-pipeline-page .pipeline-table tbody tr {
    transition: background 0.15s;
    opacity: 0;
    transform: translateY(8px);
    animation: wondercel-fadeInRow 0.4s ease forwards;
}

.wondercel-pipeline-page .pipeline-table tbody tr:hover {
    background: rgba(0,180,216,0.015);
}

.wondercel-pipeline-page .pipeline-table tbody tr:not(:last-child) td {
    border-bottom: 1px solid var(--gray-50);
}

.wondercel-pipeline-page .pipeline-table td {
    padding: 16px;
    font-size: 13px;
    vertical-align: middle;
}

.wondercel-pipeline-page .pipeline-table td.stage-cell {
    padding: 12px 8px;
}

/* ===== PRODUCT NAME ===== */

.wondercel-pipeline-page .product-name {
    font-weight: 700;
    color: var(--navy);
    font-size: 14px;
    letter-spacing: -0.01em;
}

.wondercel-pipeline-page .product-badge {
    display: inline-block;
    font-size: 8px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 6px;
    letter-spacing: 0.06em;
    vertical-align: middle;
}

.wondercel-pipeline-page .badge-lead {
    background: rgba(0,180,216,0.10);
    color: var(--teal-dark);
}

.wondercel-pipeline-page .badge-new {
    background: rgba(123,97,255,0.10);
    color: var(--purple);
}

/* ===== TARGET ===== */

.wondercel-pipeline-page .target-text {
    font-weight: 600;
    color: var(--gray-600);
    font-size: 13px;
}

.wondercel-pipeline-page .target-dual {
    display: flex;
    align-items: center;
    gap: 5px;
}

.wondercel-pipeline-page .target-dual .plus {
    color: var(--gray-300);
    font-size: 11px;
    font-weight: 600;
}

/* ===== INDICATION ===== */

.wondercel-pipeline-page .indication-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.wondercel-pipeline-page .indication-item {
    font-size: 12px;
    color: var(--gray-400);
    line-height: 1.45;
}

.wondercel-pipeline-page .indication-item.primary {
    color: var(--gray-600);
    font-weight: 500;
}

/* ===== STAGE BAR ===== */

.wondercel-pipeline-page .stage-track {
    position: relative;
    width: 100%;
    height: 36px;
    display: flex;
    align-items: center;
}

.wondercel-pipeline-page .stage-rail {
    position: absolute;
    left: 10px;
    right: 10px;
    height: 10px;
    background: var(--gray-100);
    border-radius: 5px;
    overflow: hidden;
}

.wondercel-pipeline-page .stage-rail-fill {
    height: 100%;
    border-radius: 5px;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.wondercel-pipeline-page .stage-rail-fill.teal {
    background: linear-gradient(90deg, var(--teal), var(--teal-dark));
}

.wondercel-pipeline-page .stage-rail-fill.purple {
    background: linear-gradient(90deg, var(--purple), #6347e0);
}

.wondercel-pipeline-page .stage-markers {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.wondercel-pipeline-page .stage-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 3px solid var(--gray-200);
    background: white;
    z-index: 2;
    transition: all 0.3s;
    position: relative;
}

.wondercel-pipeline-page .stage-dot.passed.teal {
    border-color: var(--teal);
    background: var(--teal);
}

.wondercel-pipeline-page .stage-dot.passed.purple {
    border-color: var(--purple);
    background: var(--purple);
}

.wondercel-pipeline-page .stage-dot.current.teal {
    border-color: var(--teal);
    background: white;
    box-shadow: 0 0 0 4px rgba(0,180,216,0.18);
}

.wondercel-pipeline-page .stage-dot.current.purple {
    border-color: var(--purple);
    background: white;
    box-shadow: 0 0 0 4px rgba(123,97,255,0.18);
}

.wondercel-pipeline-page .stage-dot.current::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.wondercel-pipeline-page .stage-dot.current.teal::after {
    background: var(--teal);
}

.wondercel-pipeline-page .stage-dot.current.purple::after {
    background: var(--purple);
}

/* ===== DISCLOSED TAG ===== */

.wondercel-pipeline-page .undisclosed {
    font-size: 11px;
    color: var(--gray-300);
    font-style: italic;
    font-weight: 400;
}

/* ===== PLATFORM TAG IN TABLE ===== */

.wondercel-pipeline-page .platform-tag {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 9px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 4px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-top: 4px;
}

.wondercel-pipeline-page .platform-tag.heme {
    background: rgba(0,180,216,0.08);
    color: var(--teal-dark);
}

.wondercel-pipeline-page .platform-tag.solid {
    background: rgba(244,162,97,0.10);
    color: #c47a30;
}

.wondercel-pipeline-page .platform-tag.autoimmune {
    background: rgba(123,97,255,0.08);
    color: var(--purple);
}

.wondercel-pipeline-page .platform-tag.transplant {
    background: rgba(46,196,182,0.08);
    color: #1a8a7f;
}

/* ===== FOOTNOTE ===== */

.wondercel-pipeline-page .footnote {
    margin-top: 32px;
    padding: 16px 20px;
    background: var(--gray-50);
    border-radius: 8px;
    border-left: 3px solid var(--teal);
}

.wondercel-pipeline-page .footnote p {
    font-size: 11px;
    color: var(--gray-400);
    line-height: 1.7;
}

.wondercel-pipeline-page .footnote p + p {
    margin-top: 6px;
}

/* ===== ANIMATION ===== */

@keyframes wondercel-fadeInRow {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wondercel-pipeline-page .pipeline-table tbody tr:nth-child(1) {
    animation-delay: 0.05s;
}

.wondercel-pipeline-page .pipeline-table tbody tr:nth-child(2) {
    animation-delay: 0.10s;
}

.wondercel-pipeline-page .pipeline-table tbody tr:nth-child(3) {
    animation-delay: 0.15s;
}

.wondercel-pipeline-page .pipeline-table tbody tr:nth-child(4) {
    animation-delay: 0.20s;
}

.wondercel-pipeline-page .pipeline-table tbody tr:nth-child(5) {
    animation-delay: 0.25s;
}

.wondercel-pipeline-page .pipeline-table tbody tr:nth-child(6) {
    animation-delay: 0.30s;
}

.wondercel-pipeline-page .pipeline-table tbody tr:nth-child(7) {
    animation-delay: 0.35s;
}

.wondercel-pipeline-page .pipeline-table tbody tr:nth-child(8) {
    animation-delay: 0.40s;
}

@keyframes wondercel-fadeInCard {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wondercel-pipeline-page .stat-card:nth-child(1) {
    animation-delay: 0.1s;
}

.wondercel-pipeline-page .stat-card:nth-child(2) {
    animation-delay: 0.2s;
}

.wondercel-pipeline-page .stat-card:nth-child(3) {
    animation-delay: 0.3s;
}

.wondercel-pipeline-page .stat-card:nth-child(4) {
    animation-delay: 0.4s;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1024px) {
    .wondercel-pipeline-page .hero {
        padding: 28px 24px 24px;
    }

    .wondercel-pipeline-page .pipeline-section {
        padding: 28px 24px 64px;
    }

    .wondercel-pipeline-page .stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .wondercel-pipeline-page .hero {
        padding: 0 16px 22px;
    }

    .wondercel-pipeline-page .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .wondercel-pipeline-page .section-header h2 {
        font-size: 22px;
    }

    .wondercel-pipeline-page .pipeline-section {
        padding-left: 16px;
        padding-right: 16px;
        overflow-x: hidden;
    }

    .wondercel-pipeline-page .platform-section {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 8px;
    }

    .wondercel-pipeline-page .pipeline-table {
        min-width: 820px;
    }

    .wondercel-pipeline-page .pipeline-table td,
    .wondercel-pipeline-page .pipeline-table th {
        padding: 10px 8px;
    }

    .wondercel-pipeline-page .stats-bar {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
}

/*! HTML - Pipeline end */

/*! default start */



/*! default end */

/*! List start */



/*! List end */

/*! Style A start */



/*! Style A end */

/*! default start */



/*! default end */

/*! Style B start */



/*! Style B end */

/*! Style D start */



/*! Style D end */

