        :root {
            --navy: #0C1929;
            --navy-light: #16283C;
            --cream: #F7F4EE;
            --cream-dark: #e8e3d8;
            --coral: #E8775A;
            --coral-hover: #d16246;
            --blue-gray: #5B8FA8;
            --slate: #4a5568;
            --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--cream);
            color: var(--navy);
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        h1, h2, h3, h4, .serif {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            line-height: 1.2;
        }

        p {
            margin-bottom: 1rem;
            color: var(--slate);
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        /* Layout Utilities */
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .section {
            padding: 6rem 0;
        }

        .text-center { text-align: center; }
        .bg-navy { background-color: var(--navy); color: var(--cream); }
        .bg-navy p { color: rgba(247, 244, 238, 0.72); }
        .bg-cream { background-color: var(--cream); color: var(--navy); }

        .eyebrow {
            font-size: 0.875rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--coral);
            font-weight: 600;
            margin-bottom: 1rem;
            display: block;
        }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.875rem 1.75rem;
            font-size: 1rem;
            font-weight: 500;
            border-radius: 2px;
            transition: var(--transition);
            cursor: pointer;
            border: 1px solid transparent;
        }

        .btn-primary {
            background-color: var(--coral);
            color: var(--cream);
            font-weight: 600;
        }

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

        .btn-secondary {
            background-color: transparent;
            color: var(--cream);
            border-color: var(--blue-gray);
        }

        .btn-secondary:hover {
            border-color: var(--cream);
            background-color: rgba(255,255,255,0.05);
        }

        .btn-outline-navy {
            background-color: transparent;
            color: var(--navy);
            border-color: var(--navy);
        }

        .btn-outline-navy:hover {
            background-color: var(--navy);
            color: var(--cream);
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 100;
            transition: var(--transition);
            padding: 1.5rem 0;
        }

        header.scrolled {
            background-color: rgba(12, 25, 41, 0.95);
            backdrop-filter: blur(10px);
            padding: 1rem 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

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

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            color: var(--cream);
            display: flex;
            align-items: center;
            gap: 0.25rem;
        }

        .logo-bold { font-weight: 700; }
        .logo-light { font-weight: 400; opacity: 0.9; }

        .nav-links {
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        .nav-links a {
            color: var(--cream);
            font-size: 0.9rem;
            font-weight: 400;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: var(--coral);
        }

        .menu-toggle {
            display: none;
            color: var(--cream);
            font-size: 1.5rem;
            cursor: pointer;
            background: none;
            border: none;
        }

        /* Hero Section */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 80px;
            background-color: var(--navy);
            overflow: hidden;
        }

        #hero-canvas {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            opacity: 0.35;
            mix-blend-mode: screen;
            pointer-events: none;
        }

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

        .hero h1 {
            font-size: 4rem;
            color: var(--cream);
            margin-bottom: 1.5rem;
        }

        .hero p.subhead {
            font-size: 1.25rem;
            color: rgba(247, 244, 238, 0.82);
            margin-bottom: 2.5rem;
            max-width: 700px;
        }

        .hero-ctas {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        /* Who We Help */
        .grid-2x2 {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            margin-top: 4rem;
        }

        .audience-card {
            padding: 2.5rem;
            background: var(--cream);
            border: 1px solid var(--cream-dark);
            transition: var(--transition);
            position: relative;
        }

        .audience-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 0;
            background-color: var(--coral);
            transition: height 0.4s ease;
        }

        .audience-card:hover {
            background: white;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transform: translateY(-5px);
        }

        .audience-card:hover::before {
            height: 100%;
        }

        .audience-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--navy);
        }

        /* Services */
        .flagship-card {
            background-color: var(--navy-light);
            padding: 4rem;
            border-left: 4px solid var(--coral);
            margin-bottom: 3rem;
        }

        .flagship-card h3 {
            font-size: 2rem;
            color: var(--cream);
            margin-bottom: 1rem;
        }

        .flagship-card p {
            font-size: 1.25rem;
            color: rgba(247, 244, 238, 0.72);
            max-width: 800px;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .service-card {
            background: #13212F;
            border: 1px solid rgba(91, 143, 168, 0.16);
            padding: 2rem;
            transition: var(--transition);
        }

        .service-card:hover {
            background: #16283C;
            border-color: rgba(232, 119, 90, 0.4);
        }

        .service-card h4 {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            color: var(--cream);
            font-family: 'Inter', sans-serif;
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 1rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid rgba(91, 143, 168, 0.18);
        }

        /* Kimi-style inline coral number badge (next to the title) */
        .service-num {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            border: 1px solid rgba(232, 119, 90, 0.45);
            color: var(--coral);
            font-family: 'Inter', sans-serif;
            font-size: 0.8rem;
            font-weight: 600;
            line-height: 1;
        }

        /* Metabolic Disease Focus */
        .metabolic-section {
            background-color: var(--cream);
            position: relative;
        }

        .metabolic-grid {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 4rem;
            align-items: start;
        }

        .metabolic-content {
            position: sticky;
            top: 120px;
        }

        .metabolic-content h2 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            color: var(--navy);
        }

        .focus-cards {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .focus-card {
            padding: 1.5rem 2rem;
            background: white;
            border: 1px solid var(--cream-dark);
            font-weight: 500;
            color: var(--navy);
            display: flex;
            align-items: center;
            gap: 1rem;
            transition: transform 0.3s ease;
        }

        .focus-card:hover {
            transform: translateX(10px);
            border-color: var(--blue-gray);
        }

        .focus-card::before {
            content: '';
            display: block;
            width: 8px;
            height: 8px;
            background-color: var(--coral);
            border-radius: 50%;
        }

        /* Engagement Process (Staircase) */
        .process-section {
            background-color: var(--navy);
            color: var(--cream);
            overflow: hidden;
        }

        .staircase-wrapper {
            margin-top: 4rem;
            padding-bottom: 2rem;
        }

        .staircase-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 1rem;
        }

        .step-card {
            background: #13212F;
            padding: 2rem 1.5rem;
            border-top: 3px solid var(--blue-gray);
            transition: var(--transition);
        }

        .step-card:hover {
            border-color: var(--coral);
            background: #16283C;
        }

        .step-num {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            color: var(--coral);
            opacity: 0.8;
            margin-bottom: 1rem;
            display: block;
        }

        .step-card h4 {
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
            color: var(--cream);
        }

        .step-card p {
            font-size: 0.875rem;
            line-height: 1.5;
            color: rgba(247, 244, 238, 0.72);
            margin: 0;
        }

        /* Staircase staggered effect */
        @media (min-width: 1024px) {
            .step-card:nth-child(1) { transform: translateY(100px); }
            .step-card:nth-child(2) { transform: translateY(80px); }
            .step-card:nth-child(3) { transform: translateY(60px); }
            .step-card:nth-child(4) { transform: translateY(40px); }
            .step-card:nth-child(5) { transform: translateY(20px); }
            .step-card:nth-child(6) { transform: translateY(0); }
        }

        /* Founder */
        .founder-grid {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 4rem;
            align-items: center;
        }

        .founder-image-placeholder {
            width: 100%;
            aspect-ratio: 3/4;
            background: var(--navy);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .founder-image-placeholder::after {
            content: '';
            position: absolute;
            top: 20px;
            left: 20px;
            width: 100%;
            height: 100%;
            border: 1px solid var(--blue-gray);
            z-index: -1;
        }

        .founder-initials {
            font-family: 'Playfair Display', serif;
            font-size: 5rem;
            color: var(--cream);
            opacity: 0.5;
        }

        .founder-content h2 {
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
        }

        .founder-role {
            font-size: 1.1rem;
            color: var(--coral);
            font-weight: 500;
            margin-bottom: 2rem;
            display: block;
        }

        .credentials-list {
            margin-top: 2rem;
            border-top: 1px solid var(--cream-dark);
            padding-top: 2rem;
        }

        .credentials-list li {
            margin-bottom: 1rem;
            padding-left: 1.5rem;
            position: relative;
            color: var(--slate);
        }

        .credentials-list li::before {
            content: '—';
            position: absolute;
            left: 0;
            color: var(--blue-gray);
        }

        /* Contact CTA */
        .contact-cta {
            background-color: var(--blue-gray);
            background: linear-gradient(135deg, var(--navy) 0%, var(--blue-gray) 100%);
            color: var(--cream);
            text-align: center;
        }

        .contact-cta h2 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
        }

        .contact-cta p {
            font-size: 1.25rem;
            color: rgba(255,255,255,0.9);
            max-width: 600px;
            margin: 0 auto 2.5rem;
        }

        /* Footer */
        footer {
            background-color: var(--navy);
            color: var(--cream);
            padding: 4rem 0 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
        }

        .footer-grid {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            flex-wrap: wrap;
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .footer-brand .logo {
            margin-bottom: 1rem;
        }

        .footer-brand p {
            color: rgba(247, 244, 238, 0.72);
            margin-bottom: 0.25rem;
        }

        .footer-links a {
            color: rgba(247, 244, 238, 0.72);
            transition: color 0.3s;
            text-decoration: underline;
            text-underline-offset: 4px;
        }

        .footer-links a:hover {
            color: var(--coral);
        }

        .disclaimer {
            font-size: 0.75rem;
            color: rgba(255,255,255,0.4);
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 2rem;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        /* Animations */
        /* Advisory Bench */
        .bench-header { max-width: 720px; margin-bottom: 3rem; }
        .bench-header p { color: rgba(247, 244, 238, 0.78); font-size: 1.125rem; line-height: 1.7; max-width: 680px; }

        .bench-lead {
            display: flex;
            align-items: center;
            gap: 2.5rem;
            flex-wrap: wrap;
            background-color: #16283C;
            border-left: 4px solid var(--coral);
            padding: 2.5rem;
            margin-bottom: 2rem;
        }
        .bench-lead-mono {
            display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
            width: 88px; height: 88px; border-radius: 50%;
            border: 1px solid rgba(232, 119, 90, 0.5);
            font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--cream);
        }
        .bench-lead-info { flex: 1; min-width: 260px; }
        .bench-lead-info .bench-name { font-size: 1.5rem; }

        .bench-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
            gap: 1.5rem;
        }
        .bench-card {
            background: #13212F;
            border: 1px solid rgba(91, 143, 168, 0.16);
            padding: 2rem;
            transition: var(--transition);
        }
        .bench-card:hover { border-color: rgba(232, 119, 90, 0.4); }
        .bench-mono {
            display: inline-flex; align-items: center; justify-content: center;
            width: 56px; height: 56px; border-radius: 50%; margin-bottom: 1.25rem;
            border: 1px solid rgba(232, 119, 90, 0.45);
            font-family: 'Playfair Display', serif; font-size: 1.25rem; color: var(--coral);
        }
        .bench-name { font-family: 'Inter', sans-serif; font-weight: 600; font-size: 1.15rem; color: var(--cream); margin-bottom: 0.25rem; }
        .bench-role { display: block; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.04em; color: var(--blue-gray); margin-bottom: 1rem; }
        .bench-bio { font-size: 0.875rem; line-height: 1.6; color: rgba(247, 244, 238, 0.72); margin: 0; }
        .bench-boundary {
            display: block; margin-top: 0.85rem; padding-top: 0.85rem;
            border-top: 1px solid rgba(91, 143, 168, 0.16);
            font-size: 0.78rem; line-height: 1.5; font-style: italic; color: rgba(247, 244, 238, 0.6);
        }
        .bench-note {
            margin-top: 2.5rem; max-width: 760px;
            font-size: 0.85rem; line-height: 1.6; color: rgba(247, 244, 238, 0.6);
        }

        .fade-up {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }
        
        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Mobile Responsiveness */
        @media (max-width: 1024px) {
            .metabolic-grid, .founder-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            .metabolic-content {
                position: static;
            }
            .staircase-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .step-card { transform: none !important; }
        }

        @media (max-width: 768px) {
            .hero h1 { font-size: 2.5rem; }
            .grid-2x2 { grid-template-columns: 1fr; }
            .services-grid { grid-template-columns: 1fr; }
            .staircase-grid { grid-template-columns: 1fr; }
            
            .nav-links {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: rgba(12, 25, 41, 0.98);
                flex-direction: column;
                padding: 2rem 0;
                gap: 1.5rem;
                display: none;
            }

            .nav-links.active {
                display: flex;
            }

            .menu-toggle {
                display: block;
            }
            
            .flagship-card { padding: 2rem; }
            .section { padding: 4rem 0; }
        }

        @media (prefers-reduced-motion: reduce) {
            html { scroll-behavior: auto; }
            .fade-up { transition: none; opacity: 1; transform: none; }
            .audience-card, .service-card, .focus-card, .btn { transition: none; transform: none !important; }
            #hero-canvas { display: none; }
        }

/* ==================== Multi-page additions ==================== */
.nav-links a.active { color: var(--coral); }

.page-hero {
    background-color: var(--navy);
    color: var(--cream);
    padding: 11rem 0 5rem;
}
.page-hero .eyebrow { margin-bottom: 1.25rem; }
.page-hero h1 {
    font-size: 3.25rem;
    color: var(--cream);
    margin-bottom: 1.25rem;
    max-width: 900px;
}
.page-hero p {
    color: rgba(247, 244, 238, 0.8);
    font-size: 1.2rem;
    max-width: 720px;
    margin-bottom: 0;
}

.lead-text { font-size: 1.15rem; color: var(--slate); max-width: 760px; }
.bg-navy .lead-text { color: rgba(247, 244, 238, 0.8); }

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--coral);
    font-weight: 600;
    margin-top: 1.25rem;
    transition: gap 0.3s ease;
}
.text-link:hover { gap: 0.75rem; }

.split-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
}
@media (max-width: 900px) { .split-grid { grid-template-columns: 1fr; gap: 2.5rem; } }

.detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}
.detail-card {
    background: white;
    border: 1px solid var(--cream-dark);
    padding: 2rem;
}
.detail-card h3 { font-size: 1.2rem; color: var(--navy); margin-bottom: 0.6rem; }
.detail-card p { margin: 0; }

.note-block {
    margin-top: 3rem;
    padding: 1.75rem 2rem;
    border-left: 3px solid var(--blue-gray);
    background: rgba(91, 143, 168, 0.06);
}
.bg-navy .note-block { background: rgba(91, 143, 168, 0.10); }
.note-block p { margin: 0; }

@media (max-width: 768px) {
    .page-hero { padding: 8rem 0 3.5rem; }
    .page-hero h1 { font-size: 2.25rem; }
}

/* ==================== Headshots (advisor cards + founder portrait) ==================== */
.bench-photo {
    display: block;
    width: 112px;
    height: 112px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    margin-bottom: 1.6rem;
    border: 1px solid rgba(232, 119, 90, 0.55);
    background-color: #0C1929;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
    transition: border-color var(--transition, 0.3s ease), box-shadow var(--transition, 0.3s ease);
}
.bench-card:hover .bench-photo {
    border-color: rgba(232, 119, 90, 0.75);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.34);
}
/* Per-person crop tuning (object-position) — keeps faces well-framed at larger size */
.bench-photo--marie { object-position: center 22%; }
.bench-photo--alfred { object-position: center 18%; }
.bench-photo--herminio { object-position: center 20%; }
.bench-photo--karina { object-position: center 28%; }

@media (max-width: 768px) {
    .bench-photo {
        width: 96px;
        height: 96px;
        margin-bottom: 1.4rem;
    }
}

/* Founder portrait fills the existing framed placeholder (navy box + offset blue-gray border) */
.founder-image-placeholder.has-photo { overflow: hidden; }
.founder-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

/* ==================== Scheduling CTA email fallback (on navy contact-cta) ==================== */
.contact-cta .cta-fallback {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.78);
    margin: 1.5rem auto 0;
}
.contact-cta .cta-fallback a {
    color: var(--cream);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.contact-cta .cta-fallback a:hover { color: var(--coral); }

/* ==================== Metabolic Disease page — Phase 1 (evidence map, mechanism, chips) ==================== */
/* Evidence-stage chips */
.ev-chip {
    display: inline-block;
    font-size: 0.64rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    line-height: 1.45;
    vertical-align: middle;
    white-space: nowrap;
}
.ev-chip--approved { background: var(--coral); color: #fff; }                                 /* FDA-approved */
.ev-chip--peer     { background: var(--blue-gray); color: #fff; }                             /* Peer-reviewed / established */
.ev-chip--trial    { background: transparent; color: var(--coral); border: 1px solid rgba(232,119,90,0.6); }   /* Trial evidence only */
.ev-chip--topline  { background: transparent; color: var(--blue-gray); border: 1px dashed rgba(91,143,168,0.7); } /* Company topline / contested */
.ev-chip--emerging { background: transparent; color: #8a8275; border: 1px dashed #b8b0a2; }   /* Emerging / investigational */

/* Three-tier evidence map */
.tier-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2.75rem;
}
.tier-col {
    background: #fff;
    border: 1px solid var(--cream-dark);
    border-top: 3px solid var(--blue-gray);
    padding: 1.75rem;
}
.tier-col--approved { border-top-color: var(--coral); }
.tier-col--trial    { border-top-color: var(--blue-gray); }
.tier-col--emerging { border-top-color: #b8b0a2; }
.tier-col h3 { font-size: 1.05rem; color: var(--navy); margin-bottom: 0.35rem; line-height: 1.5; }
.tier-col .tier-sub { font-size: 0.82rem; color: var(--slate); margin: 0 0 1rem; }
.tier-list { list-style: none; padding: 0; margin: 0; }
.tier-list li { font-size: 0.9rem; padding: 0.5rem 0; border-top: 1px solid var(--cream-dark); color: var(--navy); }
.tier-list li:first-child { border-top: none; }
.status-stamp { font-size: 0.82rem; color: var(--slate); font-style: italic; margin-top: 1.5rem; }

/* Mechanism nuance cards (on navy) */
.mech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2.75rem;
}
.mech-item {
    padding: 1.6rem;
    background: rgba(91, 143, 168, 0.10);
    border: 1px solid rgba(91, 143, 168, 0.20);
}
.bg-navy .mech-item h3 { color: var(--cream); font-size: 1.02rem; margin-bottom: 0.65rem; line-height: 1.5; }
.bg-navy .mech-item p { color: rgba(247, 244, 238, 0.78); margin: 0; font-size: 0.95rem; }

/* Trial highlight chip spacing (reuses .detail-card) */
.detail-card .ev-chip { margin-bottom: 0.7rem; }
.trial-meta { font-size: 0.82rem; color: var(--slate); margin: 0 0 0.6rem; }

/* Open-questions / frontier list (on navy) */
.frontier-list { list-style: none; padding: 0; margin: 1.25rem 0 0; }
.frontier-list li { padding: 0.55rem 0; border-top: 1px solid rgba(91,143,168,0.22); color: rgba(247,244,238,0.85); font-size: 0.97rem; }
.frontier-list li:first-child { border-top: none; }

/* Compact source drawer */
.source-drawer { margin-top: 1.75rem; font-size: 0.85rem; }
.source-drawer summary { cursor: pointer; color: var(--blue-gray); font-weight: 600; letter-spacing: 0.02em; }
.source-drawer[open] summary { margin-bottom: 0.6rem; }
.source-drawer ul { margin: 0; padding-left: 1.1rem; color: var(--slate); }
.source-drawer li { margin-bottom: 0.35rem; }
.source-drawer a { color: var(--blue-gray); text-decoration: underline; text-underline-offset: 2px; }

/* ==================== Strategy Reports (index + report pages) ==================== */
/* Evidence-stage legend row */
.ev-legend { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem; }
.ev-chip--planned { background: transparent; color: #8a8275; border: 1px dashed #b8b0a2; }

/* Featured Strategy Report teaser (on Metabolic Disease page) */
.featured-report {
    background: #fff;
    border: 1px solid var(--cream-dark);
    border-left: 4px solid var(--coral);
    padding: 2.5rem;
}
.featured-report h2 { font-size: 1.75rem; margin: 0.5rem 0 1rem; color: var(--navy); }
.featured-report p { max-width: 680px; margin-bottom: 1.75rem; }

/* Strategy Reports index — report cards */
.report-card {
    display: block;
    background: #fff;
    border: 1px solid var(--cream-dark);
    padding: 2rem;
    text-decoration: none;
    color: inherit;
}
.report-card h3 { font-size: 1.2rem; color: var(--navy); margin: 0.7rem 0 0.6rem; }
.report-card p { margin: 0; color: var(--slate); }
.report-card--published { border-top: 3px solid var(--coral); transition: var(--transition); }
.report-card--published:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(12, 25, 41, 0.10); }
.report-card__cta { display: inline-block; margin-top: 1rem; color: var(--coral); font-weight: 600; font-size: 0.9rem; }
.report-card--planned { background: rgba(91, 143, 168, 0.05); border-style: dashed; }
.report-card--planned h3 { color: var(--slate); }

/* Compact static timeline teaser (report page) */
.mini-timeline { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 2rem; }
.mini-timeline .tl-node {
    background: rgba(91, 143, 168, 0.12);
    border: 1px solid rgba(91, 143, 168, 0.25);
    padding: 0.6rem 0.9rem;
    font-size: 0.85rem;
}
.bg-navy .mini-timeline .tl-node { color: rgba(247, 244, 238, 0.85); }
.bg-navy .mini-timeline .tl-node strong { color: var(--cream); }

/* ==================== GLP-1 report Phase 2A: trial timeline, source pills, players ==================== */
/* Chronological expandable trial timeline */
.tl-axis { font-size: 0.85rem; color: var(--slate); margin-top: 0.75rem; }
.tl-rail { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2.25rem; }
.tl-trial {
    flex: 1 1 155px;
    min-width: 150px;
    background: #fff;
    border: 1px solid var(--cream-dark);
    border-top: 3px solid var(--blue-gray);
}
.tl-trial[open] {
    flex-basis: 100%;
    border-top-color: var(--coral);
    box-shadow: 0 8px 22px rgba(12, 25, 41, 0.08);
}
.tl-trial > summary { list-style: none; cursor: pointer; padding: 0.85rem 2rem 0.85rem 1rem; position: relative; }
.tl-trial > summary::-webkit-details-marker { display: none; }
.tl-trial > summary::after { content: '+'; position: absolute; top: 0.8rem; right: 0.9rem; color: var(--blue-gray); font-weight: 600; }
.tl-trial[open] > summary::after { content: '\2212'; color: var(--coral); }
.tl-year { display: block; font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--coral); font-weight: 600; line-height: 1; }
.tl-name { display: block; font-weight: 600; color: var(--navy); font-size: 0.95rem; margin: 0.35rem 0 0.5rem; }
.tl-panel { padding: 0 1rem 1.3rem; }
.tl-panel .trial-meta { margin-top: 0.25rem; }
.tl-sources { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
.src-pill {
    display: inline-block;
    font-size: 0.78rem; font-weight: 600;
    padding: 0.3rem 0.7rem; border-radius: 999px;
    border: 1px solid var(--blue-gray); color: var(--blue-gray);
    text-decoration: none; background: transparent;
}
a.src-pill:hover { background: var(--blue-gray); color: #fff; }
.src-pill--fda { border-color: var(--coral); color: var(--coral); }
a.src-pill--fda:hover { background: var(--coral); color: #fff; }
.src-pill--note { border-style: dashed; color: var(--slate); border-color: #b8b0a2; cursor: default; }

/* Strategic players / companies */
.player-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.5rem; margin-top: 2.5rem; }
.player-card { background: #fff; border: 1px solid var(--cream-dark); border-left: 4px solid var(--coral); padding: 2rem; }
.player-card h3 { color: var(--navy); font-size: 1.3rem; margin: 0 0 0.25rem; }
.player-card .player-role { font-size: 0.88rem; color: var(--slate); margin: 0 0 0.75rem; }
.brand-row { display: flex; flex-wrap: wrap; gap: 0.4rem; margin: 0.5rem 0 1rem; }
.brand-pill { font-size: 0.72rem; font-weight: 600; padding: 0.22rem 0.6rem; border-radius: 4px; background: rgba(91, 143, 168, 0.12); color: var(--navy); border: 1px solid rgba(91, 143, 168, 0.25); }
.player-card .player-diff { font-size: 0.9rem; color: var(--navy); margin: 0; }
.challenger-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1rem; margin-top: 1.5rem; }
.challenger { background: #fff; border: 1px solid var(--cream-dark); padding: 1.1rem 1.25rem; }
.challenger strong { color: var(--navy); display: block; font-size: 0.95rem; margin-bottom: 0.2rem; }
.challenger span { font-size: 0.84rem; color: var(--slate); }
.challenger--caution { border-style: dashed; background: rgba(91, 143, 168, 0.05); }
.diff-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.75rem; }
.diff-chip { font-size: 0.76rem; font-weight: 600; letter-spacing: 0.02em; padding: 0.32rem 0.72rem; border-radius: 999px; background: var(--navy); color: var(--cream); }

/* Phase 2A refinement: timeline sponsor preview + restrained IR links */
.tl-name { margin-bottom: 0.3rem; }
.tl-sponsor {
    display: inline-block;
    font-size: 0.72rem; font-weight: 500;
    color: var(--slate);
    background: rgba(91, 143, 168, 0.10);
    border: 1px solid rgba(91, 143, 168, 0.22);
    border-radius: 999px;
    padding: 0.12rem 0.55rem;
    margin: 0 0 0.55rem;
}
.ir-link { display: inline-block; margin-top: 1rem; font-size: 0.82rem; font-weight: 600; color: var(--blue-gray); text-decoration: none; }
.ir-link:hover { color: var(--coral); }
.players-note { margin-top: 1.75rem; max-width: 760px; font-size: 0.82rem; color: var(--slate); font-style: italic; }
