body {
    background: #f4f6f8;
    color: var(--text-dark);
    overflow-x: hidden;
    padding-top: calc(var(--header-height) + 5px);
}

/* ================= HERO ================= */
.launch-hero {
    min-height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1d3557, #0b1f3a);
}

.speaker-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1d3557, #0b1f3a);
}

.launch-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.25);
}

.launch-content {
    position: relative;
    max-width: 1000px;
    padding: 20px;
}

/* ================= TEXT ================= */

.launch-badge {
    background: #e63946;
    padding: 8px 14px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 15px;
    font-weight: 600;
}

.launch-content h1 {
    font-size: 46px;
    margin-bottom: 10px;
}

.launch-location .big-text {
    font-size: 22px;
    font-weight: 600;
}

.launch-location .sub-text {
    font-size: 14px;
    opacity: 0.85;
}

.launch-date-block {
    margin-top: 15px;
}

.date-main {
    font-size: 34px;
    font-weight: 700;
}

.date-sub {
    font-size: 14px;
    opacity: 0.85;
}

/* ================= COUNTDOWN ================= */

.launch-countdown {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 25px 0;
}

.launch-countdown div {
    background: rgba(255,255,255,0.12);
    padding: 15px;
    border-radius: 10px;
    min-width: 80px;
}

.launch-countdown span {
    font-size: 24px;
    font-weight: 700;
}

/* ================= ACTION BUTTONS ================= */

.launch-actions {
    margin-top: 20px;
}

.btn.primary {
    background: #e63946;
    color: #fff;
    padding: 10px 18px;
    border-radius: 10px;
    text-decoration: none;
    margin-right: 10px;
}

.btn.outline {
    background: #457b9d;
    color: #fff;
    padding: 10px 18px;
    border-radius: 10px;
    text-decoration: none;
}

/* ================= SPONSOR ================= */

.sponsor-section {
    padding: 70px 20px;
    text-align: center;
    background: #fff;
}

.sponsor-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.sponsor-hero img {
    width: 320px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.sponsor-text {
    max-width: 400px;
    text-align: left;
}

.sponsor-text h3 {
    font-size: 26px;
    margin-bottom: 10px;
}

/* ================= ABOUT ================= */

.launch-section.center {
    padding: 90px 20px;
    text-align: center;
    color: #fff;
    position: relative;
    background: linear-gradient(135deg, #1d3557 0%, #1f4a73 50%, #1d3557 100%);
}

.launch-section.center .lead {
    max-width: 900px;
    margin: auto;
    color: rgba(255,255,255,0.9);
}

/* ================= SPEAKERS ================= */

/* ================= SPEAKER GRID (2–3 COLUMN) ================= */

.speaker-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    align-items: start;
}

/* Each speaker becomes a compact card container */
.speaker-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;

    background: #fff;
    border-radius: 12px;
    padding: 14px;

    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    overflow: visible; /* allows image to sit outside */
}

/* OUTSIDE IMAGE (kept floating left) */
.speaker-img-outside {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    margin-left: -28px;
    z-index: 2;
}

.speaker-img-outside img,
.speaker-img-outside .speaker-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    object-fit: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* TEXT AREA */
.speaker-info {
    flex: 1;
    text-align: left;
    min-width: 0;
}

/* TYPOGRAPHY TIGHTENED */
.speaker-info h3 {
    font-size: 15px;
    margin: 0 0 4px 0;
    color: #1d3557;
}

.speaker-info .role {
    font-size: 12px;
    color: #e63946;
    font-weight: 600;
    display: block;
    margin-bottom: 6px;
}

.speaker-info p {
    font-size: 12.5px;
    line-height: 1.4;
    color: #444;
    margin: 0;
}
@media (max-width: 1024px) {
    .speaker-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .speaker-grid {
        grid-template-columns: 1fr;
    }
}
/* ================= CTA ================= */

.launch-cta {
    background: #1d3557;
    color: #fff;
    text-align: center;
    padding: 80px 20px;
}

.btn.large {
    padding: 14px 28px;
    font-size: 16px;
}

/* ========================================================= */
/* ================= âœ… AGENDA (ISOLATED) =================== */
/* ========================================================= */
/* ========================================================= */
/* ================= âœ… FINAL AGENDA FIX ==================== */
/* ========================================================= */

/* wrapper */
.agenda-timeline {
    max-width: 900px;
    margin: 0 auto;
}

/* day title */
.agenda-day-header {
    font-size: 26px;
    font-weight: 700;
    margin: 50px 0 25px;
    text-align: center;
    color: #fff;
}

/* row layout */
.agenda-item {
    display: grid;
    grid-template-columns: 90px 1fr 320px;
    gap: 20px;
    align-items: stretch;
    margin-bottom: 20px;
}

/* ================= TIME ================= */
.agenda-time-block {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.time {
    font-size: 16px;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
}

.time-line {
    width: 2px;
    height: 40px;
    background: rgba(255,255,255,0.3);
    margin: 6px auto;
}

/* ================= CONTENT (WHITE CARD) ================= */
.agenda-content {
    background: #fff;
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);

    height: 150px;
    overflow-y: auto;
}

.agenda-title {
    font-size: 18px;
    margin-bottom: 8px;
    color: #1d3557;
}

.agenda-notes {
    font-size: 14px;
    color: #555;
}

/* ================= SPEAKER COLUMN (BLUE CARD) ================= */
.agenda-speaker-col {
    background: linear-gradient(135deg, #1f4a73, #1d3557);
    border-radius: 14px;

    display: flex;
    flex-direction: column;
    gap: 10px;

    padding: 12px;
    height: 150px;
}

/* ðŸ”¥ speakers stretch to fill height */
.agenda-speaker {
    display: flex;
    align-items: center;

    flex: 1; /* KEY FIX: fills vertical space */
    width: 100%;

    background: rgba(255,255,255,0.08);
    border-radius: 10px;
    overflow: hidden;
}

/* ðŸ”¥ image fills full height */
.speaker-img-small {
    width: 70px;
    height: 100%;
    object-fit: cover;
}

/* ðŸ”¥ text fills remaining space */
.speaker-meta {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 8px 12px;
    flex: 1;
}

.speaker-meta strong {
    font-size: 14px;
    color: #fff;
    line-height: 1.2;
}

.speaker-meta span {
    font-size: 12px;
    color: rgba(255,255,255,0.85);
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

    .agenda-item {
        grid-template-columns: 1fr;
    }

    .agenda-content,
    .agenda-speaker-col {
        height: auto;
    }

    .agenda-speaker {
        flex: none;
        height: auto;
    }
}

/* ================= DAY SWITCH ================= */

.agenda-switch {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 20px 0 40px;
}

.agenda-btn {
    padding: 10px 20px;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;

    background: #457b9d;
    color: #fff;
}

/* active state */
.agenda-btn.active {
    background: #e63946;
    transform: scale(1.05);
}

/* hover */
.agenda-btn:hover {
    opacity: 0.9;
}

/* ================= SPEAKER CARD NEW LAYOUT ================= */
.speaker-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.speaker-card {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 30px;

    align-items: stretch;

    background: #fff;
    border-radius: 18px;
    overflow: hidden;

    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

.speaker-image-col {
    height: 100%;
}

.speaker-image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.speaker-content-col {
    padding: 30px 30px 30px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.speaker-content-col h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.speaker-content-col .role {
    display: block;
    color: #0f766e;
    font-weight: 600;
    margin-bottom: 18px;
}

.speaker-content-col p {
    line-height: 1.7;
    color: #555;
}

@media (max-width: 768px) {

    .speaker-card {
        grid-template-columns: 1fr;
    }

    .speaker-image-col img {
        height: 320px;
    }

    .speaker-content-col {
        padding: 25px;
    }

}

/* ================= SPEAKERS SECTION ================= */
/* ================= SPEAKERS SECTION ================= */
/* ================= SPEAKERS SECTION ================= */
/* ================= SPEAKERS SECTION ================= */
.launch-section.center {
    padding: 90px 20px;
}

.speaker-grid {
    max-width: 960px;           /* Slightly wider as requested */
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.speaker-card {
    display: flex;
    align-items: stretch;
    gap: 25px;
    max-width: 960px;
    margin-left: 20px;           /* Slightly less margin */
}

/* ================= BLUE IMAGE CARD ================= */
.speaker-img-blue {
    width: 195px;                    /* Wider for better image display */
    background: linear-gradient(135deg, #1f4a73, #1d3557);
    border-radius: 16px;
    padding: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.18);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.speaker-img-blue img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* Placeholder when no image */
.speaker-placeholder {
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 2.2rem;
    text-align: center;
    padding: 20px;
    line-height: 1.2;
}

/* ================= WHITE CONTENT CARD ================= */
.speaker-content {
    background: #fff;
    border-radius: 16px;
    padding: 22px 32px;           /* Reduced padding */
    box-shadow: 0 8px 25px rgba(0,0,0,0.07);
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 148px;            /* Much more compact height */
}

.speaker-content h3 {
    font-size: 1.58rem;
    margin-bottom: 6px;
    color: #1d3557;
}

.speaker-content .role {
    color: #e63946;
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 0.96rem;
}

.speaker-content p {
    line-height: 1.55;
    color: #444;
    font-size: 0.96rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;        /* Only 3 lines - keeps it short */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.speaker-read-more {
    margin-top: 12px;
    color: #e63946;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.95rem;
}

.speaker-read-more:hover {
    color: #c1121f;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
    .speaker-card {
        margin-left: 0;
        flex-direction: column;
        gap: 18px;
    }
    
    .speaker-img-blue {
        width: 100%;
        max-width: 180px;
        margin: 0 auto;
        height: 210px;
    }
    
    .speaker-content {
        min-height: auto;
    }
}