:root {
    --primary: #1d3557;
    --primary-light: #457b9d;
    --accent: #0f9d58;
    --muted: #6b7280;
}

/* ================= HERO ================= */
.launch-success-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;

    background: url('/assets/images/launch/group-photo.jpg') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0,0,0,.65), rgba(0,0,0,.55));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
    color: #fff;
    padding: 40px;
}

.hero-badge {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    padding: 10px 18px;
    border-radius: 999px;
    margin-bottom: 20px;
}

.hero-launch-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.hero-stat strong {
    display: block;
    font-size: 2rem;
}

/* ================= SPONSORS ================= */
.home-sponsor-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
}

.home-sponsor-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: #eaeef3;
}

/* HEADER */
.sponsor-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.sponsor-badge {
    display: inline-block;
    background: #e8f5f7;
    color: #0b7285;
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* FEATURED SPONSOR */
.featured-sponsor {
    text-align: center;
    background: linear-gradient(135deg, #f8fafc, #ffffff);
    border: 1px solid #eef2f7;
    border-radius: 22px;
    padding: 60px 40px;
    margin-bottom: 50px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.featured-sponsor:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 55px rgba(0,0,0,0.08);
}

.featured-label {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #0b7285;
    margin-bottom: 25px;
}

.featured-sponsor img {
    max-height: 140px;
    max-width: 100%;
    object-fit: contain;
}

/* PARTNERS */
.partner-strip {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    align-items: center;
}

.partner-item {
    background: #f9fafb;
    padding: 25px 35px;
    border-radius: 16px;
    border: 1px solid #eef2f5;
    transition: all 0.25s ease;
}

.partner-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.partner-item img {
    height: 65px;
    object-fit: contain;
    opacity: 0.9;
}

/* ================= WHAT WE DO (kept separate visually) ================= */
.home-what {
    padding: 100px 0;
    background: #f5f7fb;
    border-top: 1px solid #e8edf3;
    border-bottom: 1px solid #e8edf3;
}

/* ================= STATS (already strong, left untouched) ================= */
.partner-slider {
    margin-top: 60px;
    overflow: hidden;
}

.partner-slider-label {
    text-align: center;
    font-size: 0.95rem;
    color: #6b7280;
    margin-bottom: 20px;
    font-weight: 500;
}

/* TRACK */
.partner-track {
    display: flex;
    align-items: center;
    gap: 70px;
    width: max-content;
    animation: sponsorScroll 28s linear infinite;
}

/* LOGOS */
.partner-track img {
    height: 70px;
    object-fit: contain;
    opacity: 0.85;
    transition: all 0.3s ease;
    filter: grayscale(10%);
}

.partner-track img:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* ANIMATION */
@keyframes sponsorScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* MOBILE */
@media (max-width: 768px) {
    .partner-track {
        gap: 40px;
    }

    .partner-track img {
        height: 55px;
    }
}
/* ================= FOUNDING (GILEAD) SLIDER ================= */
.founding-slider {
    margin-top: 40px;
    overflow: hidden;
    text-align: center;
}

.founding-track {
    display: flex;
    align-items: center;
    gap: 80px;
    width: max-content;
    animation: sponsorScroll 22s linear infinite;
}

.founding-track img {
    height: 90px;
    object-fit: contain;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.founding-track img:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* reuse same animation */