/* Exponential Summit Page Styles */

:root {
    --red: #FA4639;
    --dark-blue: #151C26;
    --green: #176350;
    --light-green: #24C2AE;
    --gold: #D2CB9B;
    --light-gold: #FBFBEC;
    --dark-gray: #c8c8bb;
}

/* Enable smooth scrolling for the entire page */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* Hero Section */
.exponential-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0e17 0%, #1a1f2a 100%);
}

.exponential-hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: white;
}

.exponential-hero__background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.exponential-hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin-left: 10%;
    color: white;
}

.exponential-hero__logo {
    margin-bottom: 20px;
}

.exponential-hero__logo svg {
    width: 100%;
    max-width: 500px;
    height: auto;
}

.exponential-hero__subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 10px;
    color: white;
}

.exponential-hero__subtitle::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background-color: white;
    margin-top: 10px;
}

.exponential-hero__description {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgb(0, 0, 0);
    font-weight: 500;
    text-align: center;
}

.exponential-hero__date {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: rgb(0, 0, 0);
    letter-spacing: 2px;
}

.exponential-hero__cta {
    display: inline-block;
    background: var(--red);
    color: var(--light-gold);
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(250, 70, 57, 0.3);
}

.exponential-hero__cta:hover {
    transform: translateY(-1px);
    background-color: #d14a3f;
    box-shadow: 0 6px 20px rgba(250, 70, 57, 0.4);
    color: var(--light-gold) !important;
    text-decoration: none;
}

/* Logo Strip Section */
.exponential-logo-strip {
    background: var(--dark-blue);
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.exponential-logo-strip__container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
}

.exponential-logo-strip__left-section {
    flex: 2;
    text-align: center;
    padding: 0 40px;
    position: relative;
}

.exponential-logo-strip__right-section {
    flex: 1;
    text-align: center;
    padding: 0 40px;
    position: relative;
}

.exponential-logo-strip__left-section::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--red);
}

.exponential-logo-strip__label {
    font-size: 0.8rem;
    color: var(--red);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.exponential-logo-strip__logos-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.exponential-logo-strip__logo {
    margin-top: 10px;
    margin-bottom: 10px;
}

.exponential-logo-strip__logo.sohrlin-logo {
    margin-top: 20px;
}

.exponential-logo-strip__logo img {
    max-height: 40px;
    width: auto;
}

.exponential-logo-strip__text {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.exponential-logo-strip__address {
    color: white;
    font-size: 0.9rem;
    line-height: 1.4;
}

.exponential-logo-strip__address strong {
    font-weight: 700;
}

/* Generic Fifty-Fifty Component */
.exponential-fifty-fifty {
    padding: 80px 20px 80px 20px;
}

.exponential-fifty-fifty__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.exponential-fifty-fifty__content {
    padding-right: 40px;
}

.exponential-fifty-fifty__title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

.exponential-fifty-fifty__description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.exponential-fifty-fifty__cta {
    background: transparent;
    display: inline-block;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.exponential-fifty-fifty__right-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.exponential-fifty-fifty__image {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border-radius: 12px;
    max-height: 600px;
    overflow: hidden;
}

.exponential-fifty-fifty__conference-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.exponential-fifty-fifty__item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.exponential-fifty-fifty__item img,
.exponential-fifty-fifty__item div {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Generic Carousel Component */
.exponential-carousel {
    padding: 80px 20px 80px 20px;
    position: relative;
    overflow-x: hidden;
}

.exponential-carousel__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 75px;
    position: relative;
    overflow: visible;
}

.exponential-carousel__title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.exponential-carousel__glide {
    position: relative;
    margin-bottom: 60px;
}

.exponential-carousel__card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    height: 400px;
    display: flex;
    flex-direction: column;
}

.exponential-carousel__card-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    object-fit: cover;
    object-position: center top;
}

.exponential-carousel__card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    padding: 20px;
}

.exponential-carousel__card-content {
    padding: 25px;
    background: var(--light-gold);
    min-height: 100px;
}

.exponential-carousel__card-title {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

/* Glide.js Custom Styles */
.exponential-carousel .glide__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-blue);
    cursor: pointer;
    border: none;
    background: transparent;
    box-shadow: none;
    transition: all 0.3s ease;
    z-index: 5;
}

.exponential-carousel .glide__arrow:hover {
    transform: translateY(-50%) scale(1.1);
}

.exponential-carousel .glide__arrow--left {
    left: -80px;
}

.exponential-carousel .glide__arrow--right {
    right: -80px;
}

.exponential-carousel .glide__bullets {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

.exponential-carousel .glide__bullet {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--dark-blue);
}

.exponential-carousel .glide__bullet--active {
    transform: scale(1.2);
}

/* Form Specific Styles */

.show-on-submit {
    display: none;
}

.success-message {
    color: var(--light-gold);
    text-align: center;
    margin-top: 20px;
    padding: 40px 20px;
    background: transparent;
    border-radius: 16px;
    border: 2px solid var(--light-green);
    backdrop-filter: blur(10px);
    animation: successFadeIn 0.6s ease-out;
}

.success-message__icon {
    margin-bottom: 20px;
    animation: successIconBounce 0.8s ease-out 0.2s both;
}

.success-message__icon svg {
    color: var(--light-green);
    filter: drop-shadow(0 4px 8px rgba(36, 194, 174, 0.3));
}

.success-message__title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--gold);
    animation: successSlideUp 0.6s ease-out 0.3s both;
}

.success-message__text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    animation: successSlideUp 0.6s ease-out 0.4s both;
}

.success-message__details {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 300px;
    margin: 0 auto;
    animation: successSlideUp 0.6s ease-out 0.5s both;
}

.success-message__detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.success-message__detail-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.success-message__detail-item svg {
    color: var(--gold);
    flex-shrink: 0;
}

.success-message__detail-item span {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Success message animations */
@keyframes successFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes successIconBounce {
    0% {
        opacity: 0;
        transform: scale(0.3) rotate(-180deg);
    }
    50% {
        transform: scale(1.1) rotate(0deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

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



/* Inside Summit Specific Styles */
.inside-summit {
    background: var(--red);
}

.inside-summit .exponential-grid__title {
    color: var(--light-gold);
}

.inside-summit .exponential-grid__card-title {
    color: var(--light-gold);
}


/* Why Exponential Specific Styles */
.why-exponential {
    background: var(--light-gold);
}

.why-exponential .exponential-fifty-fifty__title {
    color: var(--red);
}

.why-exponential .exponential-fifty-fifty__description {
    color: #151C26;
}

.why-exponential .exponential-fifty-fifty__cta {
    color: var(--dark-blue);
    border: 2px solid var(--red);
}

.why-exponential .exponential-fifty-fifty__cta:hover {
    background: var(--red);
    color: var(--light-gold) !important;
    text-decoration: none;
}

.why-exponential .exponential-fifty-fifty__right-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.why-exponential .exponential-fifty-fifty__first-row-container {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 15px;
}

.why-exponential .exponential-fifty-fifty__second-row-container {
    display: grid;
    grid-template-columns: 2fr 1.5fr;
    gap: 15px;
}


/* Event Highlights Specific Styles */
.event-highlights {
    background: url('/static/exponential/armando-presenting.png');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .event-highlights {
        background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(42, 42, 42, 0.8) 100%), url('/static/exponential/armando-presenting.png');
        background-size: cover;
        background-position: top;
    }
}

.event-highlights__container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.event-highlights__title {
    color: var(--red);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.event-highlights__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.event-highlights__column {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.event-highlights__highlight-item {
    display: flex;
    align-items: flex-start;
    flex-direction: row;
    gap: 20px;
    padding: 25px;
}

.event-highlights__highlight-item.cta {
    justify-content: center;
}

.event-highlights__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
}

.event-highlights__icon svg {
    width: 48px;
    height: 48px;
}

.event-highlights__text {
    flex: 1;
}

.event-highlights__highlight-title {
    color: var(--gold);
    font-size: 1.7rem;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
}

.event-highlights__highlight-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

.event-highlights__cta {
    display: inline-block;
    background: var(--red);
    color: var(--light-gold);
    padding: 20px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    border: 2px solid var(--red);
    text-align: center;
    margin-top: 20px;
    align-self: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(250, 70, 57, 0.3);
}

.event-highlights__cta:hover {
    transform: translateY(-1px);
    background-color: #d14a3f;
    box-shadow: 0 6px 20px rgba(250, 70, 57, 0.4);
    color: var(--light-gold) !important;
    text-decoration: none;
}

/* Responsive Design for Event Highlights */
@media (max-width: 1000px) {
    .event-highlights__grid {
        gap: 60px;
    }
    
    .event-highlights__title {
        font-size: 2.2rem;
        margin-bottom: 50px;
    }
    
    .event-highlights__highlight-item {
        padding: 20px;
        gap: 16px;
    }
    
    .event-highlights__icon {
        width: 40px;
        height: 40px;
    }
    
    .event-highlights__highlight-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .event-highlights {
        padding: 60px 20px;
    }
    
    .event-highlights__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .event-highlights__title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .event-highlights__column {
        gap: 30px;
    }
    
    .event-highlights__highlight-item {
        padding: 18px;
        gap: 14px;
    }
    
    .event-highlights__icon {
        width: 48px;
        height: 48px;
    }
    
    .event-highlights__icon svg {
        width: 48px;
        height: 48px;
    }
    
    .event-highlights__highlight-title {
        font-size: 1.2rem;
    }
    
    .event-highlights__highlight-description {
        font-size: 1.1rem;
    }
    
    .event-highlights__cta {
        padding: 12px 25px;
        font-size: 0.95rem;
        margin-top: 15px;
    }
}

@media (max-width: 480px) {
    .event-highlights {
        padding: 50px 15px;
    }
    
    .event-highlights__title {
        font-size: 1.8rem;
        margin-bottom: 35px;
    }
    
    .event-highlights__column {
        gap: 25px;
    }
    
    .event-highlights__highlight-item {
        padding: 16px;
        gap: 12px;
    }
    
    .event-highlights__icon {
        width: 32px;
        height: 32px;
    }
    
    .event-highlights__icon svg {
        width: 24px;
        height: 24px;
    }
    
    .event-highlights__highlight-title {
        font-size: 1.2rem;
        margin-bottom: 6px;
    }
    
    .event-highlights__highlight-description {
        font-size: 1.1rem;
    }
    
    .event-highlights__cta {
        padding: 10px 20px;
        font-size: 0.9rem;
        margin-top: 10px;
    }
}

/* Speakers Specific Styles */

.speakers {
    background: var(--gold);
}

.speakers .exponential-carousel__title {
    color: var(--dark-blue);
}

.speakers .exponential-carousel__card-title {
    color: var(--light-gold);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.speakers .exponential-carousel__card-subtitle {
    color: var(--light-gold);
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0 0 15px 0;
    font-weight: 400;
}

.speakers .exponential-carousel__card-bio {
    color: var(--light-gold);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0 0 15px 0;
    opacity: 0.9;
    flex-grow: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    max-height: calc(1.5em * 4); /* Fallback for browsers without line-clamp support */
}

.speakers .exponential-carousel__card-presentation {
    color: var(--light-gold);
    font-size: 0.8rem;
    line-height: 1.4;
    margin: 0;
    opacity: 0.85;
    border-top: 1px solid rgba(251, 251, 236, 0.2);
    padding-top: 12px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    flex-shrink: 0;
    max-height: calc(1.4em * 2); /* Fallback for browsers without line-clamp support */
}

.speakers .exponential-carousel__card-content {
    background: var(--dark-blue);
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-height: 120px;
    position: relative;
}

.speakers .exponential-carousel__read-more {
    color: var(--red);
    font-size: 0.85rem;
    font-weight: 500;
    margin-top: 12px;
    opacity: 0.9;
    display: inline-block;
    align-self: flex-start;
}

/* Show an arrow after Read more on card hover */
.speakers .exponential-carousel__read-more::after {
    content: '';
    display: inline-block;
    margin-left: 6px;
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.speakers .exponential-carousel__card:hover .exponential-carousel__read-more::after {
    content: '→';
    opacity: 1;
    transform: translateX(0);
}

/* Make speaker cards clickable */
.speaker-card {
    cursor: pointer;
}

/* Speaker headshot specific styling */
.speakers .exponential-carousel__card-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
    background: var(--dark-blue);
}

.speakers .exponential-carousel__card {
    height: 380px;
}

.speakers .exponential-carousel__card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.3s ease;
}

.speakers .glide__arrow {
    color: var(--dark-blue);
}

.speakers .glide__bullet--active {
    background: var(--red);
}

/* Sohrlin Specific Styles */

.sohrlin {
    background: var(--green);
}

.sohrlin .exponential-fifty-fifty__title {
    color: var(--light-green);
}

.sohrlin .exponential-fifty-fifty__description {
    color: var(--light-gold);
}

.sohrlin .exponential-fifty-fifty__cta {
    color: var(--light-gold);
    border: 2px solid var(--light-green);
}

.sohrlin .exponential-fifty-fifty__cta:hover {
    background: var(--light-green);
    color: var(--light-gold) !important;
    text-decoration: none;
}

.sohrlin .exponential-fifty-fifty__logo {
    max-width: 250px;
    margin-bottom: 20px;
}

.sohrlin .exponential-fifty-fifty__right-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.sohrlin .exponential-fifty-fifty__first-row-container {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 15px;
}

.sohrlin .exponential-fifty-fifty__second-row-container {
    display: grid;
    grid-template-columns: 2fr 1.5fr;
    gap: 15px;
}

/* Sign Up Specific Styles */

.sign-up {
    background: url('/static/exponential/elements/ai-art-banner-clean.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    /* Add overflow hidden to clip the extended blur */
    overflow: hidden;
    min-height: 860px;
}

.sign-up-container {
    background: var(--dark-blue);
    padding: 40px;
    border-radius: 16px;
    max-width: 500px;
}

.sign-up::before {
    content: "";
    position: absolute;
    /* Extend the blur area beyond the container */
    inset: -50px;
    z-index: 0;
    background: inherit;
    filter: blur(16px);
    pointer-events: none;
}

.sign-up > * {
    position: relative;
    z-index: 1;
}

.sign-up .exponential-fifty-fifty__container {
    grid-template-columns: 1fr;
}

.sign-up .exponential-fifty-fifty__title {
    color: var(--light-gold);
}

.sign-up .exponential-fifty-fifty__description {
    color: var(--light-gold);
}

.sign-up .exponential-fifty-fifty__right-content {
    grid-template-columns: 1fr;
}

.sign-up .exponential-fifty-fifty__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Exponential Signup Form Styles */
.exponential-signup-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 400px;
    margin: 0 auto;
}

.exponential-signup-form__field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.exponential-signup-form__field label {
    color: var(--light-gold);
    font-size: 16px;
    font-weight: 500;
}

.exponential-signup-form__field input[type="text"],
.exponential-signup-form__field input[type="email"] {
    background-color: #2A2C30;
    border: 2px solid #66D9EF;
    border-radius: 8px;
    padding: 15px 18px;
    font-size: 16px;
    color: #E0E0E0;
    height: 55px;
    transition: all 0.3s ease;
}

.exponential-signup-form__field input[type="text"]::placeholder,
.exponential-signup-form__field input[type="email"]::placeholder {
    color: #E0E0E0;
    opacity: 0.7;
}

.exponential-signup-form__field input[type="text"]:focus,
.exponential-signup-form__field input[type="email"]:focus {
    outline: none;
    border-color: #66D9EF;
    box-shadow: 0 0 0 3px rgba(102, 217, 239, 0.1);
}

.exponential-signup-form__checkbox {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
}

.exponential-signup-form__checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    border: 2px solid #66D9EF;
    border-radius: 4px;
    background-color: #2A2C30;
    margin-top: 2px;
    cursor: pointer;
    appearance: none;
    position: relative;
    flex-shrink: 0;
}

.exponential-signup-form__checkbox input[type="checkbox"]:checked {
    background-color: #66D9EF;
}

.exponential-signup-form__checkbox input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #1A1C20;
    font-size: 14px;
    font-weight: bold;
}

.exponential-signup-form__checkbox label {
    color: var(--gold);
    font-size: 15px;
    line-height: 1.5;
    font-weight: 400;
    cursor: pointer;
    margin: 0;
}

.exponential-signup-form button[type="submit"] {
    background-color: var(--red);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 600;
    height: 55px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.exponential-signup-form button[type="submit"]:hover {
    background-color: #d14a3f;
    transform: translateY(-1px);
}

.exponential-signup-form small {
    color: var(--dark-gold);
    font-size: 14px;
    line-height: 1.4;
    text-align: center;
    margin-top: 20px;
}

.exponential-signup-form small a {
    color: var(--red);
    text-decoration: underline;
    font-weight: 500;
}

.exponential-signup-form small a:hover {
    color: #d14a3f !important;
}

/* Button disabled state and spinner */
.exponential-signup-form button[type="submit"]:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    transform: none;
}

.exponential-signup-form button[type="submit"]:disabled:hover {
    background-color: #ccc;
    transform: none;
}

/* Spinner animation */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.spinner {
    animation: spin 1s linear infinite;
}

/* Responsive Design */
@media (max-width: 1300px) and (min-width: 769px) {
    .exponential-carousel__container {
        padding: 0 80px;
    }
    
    .exponential-carousel .glide__arrow--left {
        left: 20px;
    }
    
    .exponential-carousel .glide__arrow--right {
        right: 20px;
    }
}

@media (max-width: 1000px) {
    .exponential-grid__cards {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 25px;
    }
    
    .exponential-grid__title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
}

@media (max-width: 1000px) {
    .exponential-hero__content {
        max-width: 300px;
    }
    .exponential-hero__date {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .exponential-hero__content {
        margin-left: 5%;
        margin-right: 5%;
        text-align: center;
    }

    .exponential-hero {
        justify-content: center;
    }
    
    .exponential-hero__logo svg {
        max-width: 300px;
    }
    
    .exponential-hero__date {
        font-size: 1.3rem;
    }
    
    .exponential-logo-strip__container {
        flex-direction: column;
        gap: 30px;
    }
    
    .exponential-logo-strip__left-section,
    .exponential-logo-strip__right-section {
        flex: none;
        width: 100%;
    }
    
    .exponential-logo-strip__left-section::after {
        display: none;
    }
    
    .exponential-logo-strip__logos-container {
        gap: 40px;
    }
    
    .exponential-fifty-fifty__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .exponential-fifty-fifty__content {
        padding-right: 0;
        text-align: center;
    }
    
    .exponential-fifty-fifty__title {
        font-size: 2.5rem;
    }
    
    .exponential-fifty-fifty__right-content {
        grid-template-columns: 1fr;
    }

    .event-highlights .exponential-fifty-fifty__right-content {
        align-items: center;
    }
    
    .event-highlights .exponential-fifty-fifty__image {
        min-height: 300px;
    }
    
    .event-highlights .exponential-fifty-fifty__title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .exponential-grid__cards {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    
    .exponential-grid__title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .exponential-carousel__container {
        padding: 0 20px;
    }
    
    .exponential-carousel__title {
        font-size: 2.5rem;
        margin-bottom: 40px;
    }
    
    .exponential-carousel .glide__arrow {
        width: 40px;
        height: 40px;
    }
    
    .exponential-carousel .glide__arrow--left {
        left: 10px;
    }
    
    .exponential-carousel .glide__arrow--right {
        right: 10px;
    }
    
    .exponential-signup-form {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .success-message {
        padding: 30px 15px;
    }
    
    .success-message__title {
        font-size: 1.5rem;
    }
    
    .success-message__text {
        font-size: 1rem;
    }
    
    .success-message__details {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .exponential-hero__content {
        margin-left: 20px;
        margin-right: 20px;
    }
    
    .exponential-hero__logo svg {
        max-width: 250px;
    }
    
    .exponential-hero__date {
        font-size: 1.8rem;
    }
    
    .exponential-fifty-fifty__title {
        font-size: 2rem;
    }
    
    .event-highlights .exponential-fifty-fifty__image {
        min-height: 250px;
    }
    
    .event-highlights .exponential-fifty-fifty__title {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }
    
    .event-highlights .exponential-fifty-fifty__highlight-title {
        font-size: 1.1rem;
    }
    
    .event-highlights .exponential-fifty-fifty__highlight-description {
        font-size: 0.9rem;
    }

    .exponential-grid__cards {
        gap: 15px;
    }
    
    .exponential-grid__title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .exponential-grid__card {
        height: 350px;
    }
    
    .exponential-carousel__container {
        padding: 0 15px;
    }
    
    .exponential-carousel__title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .exponential-carousel__card {
        height: 350px;
    }
    
    .speakers .exponential-carousel__card {
        height: 360px;
    }
    
    .speakers .exponential-carousel__card-content {
        padding: 25px 20px;
    }
    
    .exponential-carousel .glide__arrow {
        width: 35px;
        height: 35px;
    }
    
    .exponential-carousel .glide__arrow--left {
        left: 5px;
    }
    
    .exponential-carousel .glide__arrow--right {
        right: 5px;
    }

    .exponential-signup-form {
        padding: 0 15px;
    }
    
    .success-message {
        padding: 25px 10px;
    }
    
    .success-message__title {
        font-size: 1.3rem;
    }
    
    .success-message__text {
        font-size: 0.95rem;
    }
    
    .success-message__detail-item {
        padding: 10px 12px;
    }
    
    .success-message__detail-item span {
        font-size: 0.9rem;
    }
    
    .exponential-signup-form__field input[type="text"],
    .exponential-signup-form__field input[type="email"] {
        font-size: 16px;
        padding: 12px 15px;
        height: 50px;
    }
    
    .exponential-signup-form button[type="submit"] {
        font-size: 16px;
        padding: 12px 25px;
        height: 50px;
    }
}

/* Generic Grid Component */
.exponential-grid {
    padding: 80px 20px 80px 20px;
    position: relative;
}

.exponential-grid__container {
    max-width: 1200px;
    margin: 0 auto;
}

.exponential-grid__title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.exponential-grid__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.exponential-grid__card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    height: 250px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.exponential-grid__card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    z-index: 1;
}

.exponential-grid__card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
    min-height: 100px;
    z-index: 2;
}

.exponential-grid__card-title {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
    color: white;
}

.exponential-fifty-fifty__video-container {
    width: 100%;
    height: 420px;
    position: relative;
}

.exponential-fifty-fifty__video {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

/* Speaker Modal Styles */
.speaker-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.speaker-modal.active {
    opacity: 1;
    visibility: visible;
}

.speaker-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.speaker-modal__content {
    position: relative;
    width: 90%;
    max-width: 700px;
    max-height: 85vh;
    margin: 5vh auto;
    background: var(--dark-blue);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.speaker-modal.active .speaker-modal__content {
    transform: scale(1);
}

.speaker-modal__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: var(--light-gold);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.3s ease, transform 0.3s ease;
}

.speaker-modal__close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.speaker-modal__close svg {
    width: 20px;
    height: 20px;
}

.speaker-modal__body {
    padding: 40px;
    overflow-y: auto;
    max-height: calc(85vh - 80px);
    color: var(--light-gold);
}

.speaker-modal__header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(251, 251, 236, 0.2);
}

.speaker-modal__headshot {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    border: 3px solid var(--red);
    flex-shrink: 0;
}

.speaker-modal__header-text {
    flex: 1;
}

.speaker-modal__title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--light-gold);
    margin: 0 0 10px 0;
}

.speaker-modal__subtitle {
    font-size: 1.1rem;
    color: var(--light-gold);
    opacity: 0.8;
    margin: 0;
    font-weight: 400;
}

.speaker-modal__section {
    margin-bottom: 30px;
}

.speaker-modal__section:last-child {
    margin-bottom: 0;
}

.speaker-modal__section-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--red);
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.speaker-modal__bio {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--light-gold);
    margin: 0;
    opacity: 0.9;
}

.speaker-modal__presentation {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--light-gold);
    margin: 0;
    opacity: 0.9;
    font-style: italic;
}

/* Modal Responsive Styles */
@media (max-width: 768px) {
    .speaker-modal__content {
        width: 95%;
        max-height: 90vh;
        margin: 5vh auto;
    }

    .speaker-modal__body {
        padding: 30px 20px;
        max-height: calc(90vh - 60px);
    }

    .speaker-modal__header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
        padding-bottom: 25px;
        margin-bottom: 25px;
    }

    .speaker-modal__headshot {
        width: 100px;
        height: 100px;
    }

    .speaker-modal__title {
        font-size: 1.6rem;
    }

    .speaker-modal__subtitle {
        font-size: 1rem;
    }

    .speaker-modal__section-title {
        font-size: 1.1rem;
    }

    .speaker-modal__bio,
    .speaker-modal__presentation {
        font-size: 0.95rem;
    }

    .speaker-modal__close {
        top: 15px;
        right: 15px;
        width: 35px;
        height: 35px;
    }
}

/* Remove old bio and presentation styles that are no longer needed */
.speakers .exponential-carousel__card-bio,
.speakers .exponential-carousel__card-presentation {
    display: none;
}

/* Agenda Intro Section Styles */
.exponential-agenda-intro {
    padding: 60px 20px;
    background: url('/static/exponential/elements/ai-art-banner-clean.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow-x: hidden;
}

.exponential-agenda-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(21, 28, 38, 0.6) 0%, rgba(21, 28, 38, 0.6) 50%, rgba(21, 28, 38, 0.85) 85%, rgba(21, 28, 38, 1) 100%);
    z-index: 0;
}

.exponential-agenda-intro__container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.exponential-agenda-intro__container_link {
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 15px;
    text-align: center;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.exponential-agenda-intro__logo {
    max-width: 250px;
    width: 100%;
}

.exponential-agenda-intro__logo svg {
    width: 100%;
    height: auto;
}

.exponential-agenda-intro__logo svg path[fill="#151C26"] {
    fill: var(--light-gold);
}

.exponential-agenda-intro__text {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--light-gold);
    max-width: 600px;
    margin: 0;
    opacity: 0.9;
}

.exponential-agenda-intro__link {
    display: inline-block;
    color: var(--light-gold);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 10px 20px;
}

.exponential-agenda-intro__link:hover {
    color: var(--red) !important;
    text-decoration: none;
    transform: translateX(-3px);
}

/* Agenda Section Styles */
.exponential-agenda {
    padding: 80px 20px;
    background: var(--dark-blue);
    overflow-x: hidden;
}

.exponential-agenda__container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.exponential-agenda__title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--light-gold);
}

.exponential-agenda__day-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--red);
}

.exponential-agenda__timeline {
    display: flex;
    flex-direction: column;
    max-width: 900px;
    margin: 0 auto;
    gap: 30px;
}

.exponential-agenda__time-slot {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 40px;
    align-items: start;
    position: relative;
}

.exponential-agenda__time-slot::before {
    content: '';
    position: absolute;
    left: 100px;
    top: 0;
    bottom: -30px;
    width: 2px;
    background: var(--red);
    z-index: 1;
}

.exponential-agenda__time-slot:last-child::before {
    display: none;
}

.exponential-agenda__time {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--red);
    position: relative;
    z-index: 2;
    background: var(--dark-blue);
    padding-top: 5px;
    padding-bottom: 5px;
}

.exponential-agenda__sessions {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.exponential-agenda__session {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
}

.exponential-agenda__session.agenda-session:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--red);
}

.exponential-agenda__session-type {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--gold);
    text-align: center;
    padding: 10px 0;
}

.exponential-agenda__session-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.exponential-agenda__speaker-info {
    display: flex;
    gap: 20px;
}

.exponential-agenda__speaker-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    border: 2px solid var(--red);
    flex-shrink: 0;
}

.exponential-agenda__speaker-details {
    flex: 1;
}

.exponential-agenda__speaker-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--light-gold);
    margin-bottom: 5px;
}

.exponential-agenda__speaker-title {
    font-size: 1rem;
    color: var(--light-gold);
    opacity: 0.8;
    line-height: 1.4;
}

.exponential-agenda__talk-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--red);
    line-height: 1.5;
    transition: color 0.3s ease;
    margin-bottom: -10px;
}

.exponential-agenda__session.agenda-session:hover .exponential-agenda__talk-title {
    color: var(--light-green);
}

.exponential-agenda__session-duration {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gold);
    opacity: 0.8;
    font-style: italic;
}

/* Panel Session Styles */
.exponential-agenda__panel-speakers {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.exponential-agenda__panel-label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--light-green);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.exponential-agenda__panel-members {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: flex-start;
    align-items: flex-start;    
}

.exponential-agenda__panel-member {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 12px 6px 0px;
    flex: 0 1 auto;
    min-width: 0;
}

.exponential-agenda__panel-member.panelist > .exponential-agenda__panel-member-avatar {
    border: 2px solid var(--gold);
}

.exponential-agenda__panel-member-avatar {
    width: 60px;
    height: 60px;
    min-width: 45px;
    border-radius: 50%;
    background: var(--red);
    color: var(--light-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid var(--red);
    flex-shrink: 0;
}

/* Style panel member avatar images to match speaker images */
img.exponential-agenda__panel-member-avatar {
    width: 80px;
    height: 80px;
    min-width: 45px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    border: 2px solid var(--red);
    flex-shrink: 0;
    background: none;
    display: block;
}

.exponential-agenda__panel-member-info {
    flex: 1;
    min-width: 0;
}

.exponential-agenda__panel-member-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--light-gold);
    margin-bottom: 3px;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.exponential-agenda__panel-member-title {
    font-size: 0.85rem;
    color: var(--light-gold);
    opacity: 0.85;
    line-height: 1.4;
    margin-bottom: 3px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.exponential-agenda__panel-member-role {
    font-size: 0.8rem;
    color: var(--dark-gray);
    opacity: 0.8;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Agenda Modal Styles */
.agenda-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.agenda-modal.active {
    opacity: 1;
    visibility: visible;
}

.agenda-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.agenda-modal__content {
    position: relative;
    width: 90%;
    max-width: 800px;
    max-height: 85vh;
    margin: 5vh auto;
    background: var(--dark-blue);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.agenda-modal.active .agenda-modal__content {
    transform: scale(1);
}

.agenda-modal__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: var(--light-gold);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.3s ease, transform 0.3s ease;
}

.agenda-modal__close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.agenda-modal__close svg {
    width: 20px;
    height: 20px;
}

.agenda-modal__body {
    padding: 40px;
    overflow-y: auto;
    max-height: calc(85vh - 80px);
    color: var(--light-gold);
}

.agenda-modal__header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(251, 251, 236, 0.2);
}

.agenda-modal__headshot {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    border: 3px solid var(--red);
    flex-shrink: 0;
}

.agenda-modal__header-text {
    flex: 1;
}

.agenda-modal__title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--light-gold);
    margin: 0 0 10px 0;
}

.agenda-modal__subtitle {
    font-size: 1.1rem;
    color: var(--light-gold);
    opacity: 0.8;
    margin: 0;
    font-weight: 400;
    line-height: 1.5;
}

.agenda-modal__section {
    margin-bottom: 30px;
}

.agenda-modal__section:last-child {
    margin-bottom: 0;
}

.agenda-modal__section-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--red);
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.agenda-modal__talk-title {
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--light-gold);
    margin: 0;
    font-weight: 600;
}

.agenda-modal__abstract {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gold);
    font-style: italic;
    margin: 0;
    opacity: 0.9;
}

/* Panel Members in Modal */
.agenda-modal__panel-members {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.agenda-modal__panel-member {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px;
}

.agenda-modal__panel-member-avatar {
    width: 80px;
    height: 80px;
    min-width: 80px;
    border-radius: 50%;
    background: var(--red);
    color: var(--light-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid var(--red);
    flex-shrink: 0;
    overflow: hidden;
}

.agenda-modal__panel-member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 50%;
}

.agenda-modal__panel-member.panelist > .agenda-modal__panel-member-avatar {
    border: 2px solid var(--gold);
}

.agenda-modal__panel-member-info {
    flex: 1;
    min-width: 0;
}

.agenda-modal__panel-member-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--light-gold);
    margin-bottom: 5px;
    line-height: 1.3;
}

.agenda-modal__panel-member-title {
    font-size: 0.95rem;
    color: var(--light-gold);
    opacity: 0.85;
    line-height: 1.4;
    margin-bottom: 5px;
}

.agenda-modal__panel-member-role {
    font-size: 0.95rem;
    color: var(--dark-gray);
    opacity: 0.9;
    line-height: 1.4;
}

/* Agenda Responsive Styles */
@media (max-width: 1000px) {
    .exponential-agenda__time-slot {
        grid-template-columns: 150px 1fr;
        gap: 30px;
    }

    .exponential-agenda__time-slot::before {
        left: 75px;
    }

    .exponential-agenda__time {
        font-size: 1.1rem;
        padding-right: 15px;
    }

    .exponential-agenda__panel-members {
        gap: 12px;
    }
}

@media (max-width: 768px) {
    .exponential-agenda-intro {
        padding: 50px 20px;
    }

    .exponential-agenda-intro__container {
        gap: 25px;
    }

    .exponential-agenda-intro__logo {
        max-width: 200px;
    }

    .exponential-agenda-intro__text {
        font-size: 1.1rem;
    }

    .exponential-agenda-intro__link {
        font-size: 0.95rem;
        padding: 8px 18px;
    }

    .exponential-agenda {
        padding: 60px 20px;
    }

    .exponential-agenda__title {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .exponential-agenda__day-title {
        font-size: 1.5rem;
        margin-bottom: 40px;
    }

    .exponential-agenda__time-slot {
        grid-template-columns: 1fr;
        gap: 15px;
        position: relative;
        padding-left: 60px;
    }

    .exponential-agenda__time-slot::before {
        left: 15px;
        top: 0;
        bottom: -15px;
    }

    .exponential-agenda__time {
        text-align: left;
        padding-right: 0;
        padding-left: 0;
        padding-top: 0;
        padding-bottom: 13px;
        position: absolute;
        left: 0;
        top: 0;
        font-size: 1rem;
    }

    .exponential-agenda__session {
        padding: 20px;
    }

    .exponential-agenda__speaker-image {
        width: 60px;
        height: 60px;
    }

    .exponential-agenda__speaker-name {
        font-size: 1.1rem;
    }

    .exponential-agenda__speaker-title {
        font-size: 0.9rem;
    }

    .exponential-agenda__talk-title {
        font-size: 1.1rem;
    }

    .exponential-agenda__panel-members {
        gap: 12px;
        flex-wrap: wrap;
    }

    .exponential-agenda__panel-member {
        padding: 5px 10px 5px 0px;
        gap: 10px;
        flex: 1 1 calc(50% - 6px);
        min-width: 150px;
    }

    .exponential-agenda__panel-member-avatar {
        width: 60px;
        height: 60px;
        min-width: 40px;
        font-size: 0.75rem;
    }

    img.exponential-agenda__panel-member-avatar {
        width: 60px;
        height: 60px;
        min-width: 40px;
    }

    .exponential-agenda__panel-member-name {
        font-size: 0.9rem;
    }

    .exponential-agenda__panel-member-title {
        font-size: 0.8rem;
        line-height: 1.3;
    }

    .exponential-agenda__panel-member-role {
        font-size: 0.75rem;
    }

    .agenda-modal__content {
        width: 95%;
        max-height: 90vh;
        margin: 5vh auto;
    }

    .agenda-modal__body {
        padding: 30px 20px;
        max-height: calc(90vh - 60px);
    }

    .agenda-modal__header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
        padding-bottom: 25px;
        margin-bottom: 25px;
    }

    .agenda-modal__headshot {
        width: 100px;
        height: 100px;
    }

    .agenda-modal__title {
        font-size: 1.6rem;
    }

    .agenda-modal__subtitle {
        font-size: 1rem;
    }

    .agenda-modal__section-title {
        font-size: 1.1rem;
    }

    .agenda-modal__talk-title {
        font-size: 1.1rem;
    }

    .agenda-modal__abstract {
        font-size: 0.95rem;
    }

    .agenda-modal__close {
        top: 15px;
        right: 15px;
        width: 35px;
        height: 35px;
    }

    .agenda-modal__panel-member {
        padding: 12px;
        gap: 15px;
    }

    .agenda-modal__panel-member-avatar {
        width: 70px;
        height: 70px;
        min-width: 70px;
        font-size: 1.1rem;
    }

    .agenda-modal__panel-member-name {
        font-size: 1.05rem;
    }

    .agenda-modal__panel-member-title {
        font-size: 0.9rem;
        line-height: 1.3;
        margin-bottom: 4px;
    }

    .agenda-modal__panel-member-role {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .exponential-agenda-intro {
        padding: 40px 15px;
    }

    .exponential-agenda-intro__container {
        gap: 20px;
    }

    .exponential-agenda-intro__logo {
        max-width: 150px;
    }

    .exponential-agenda-intro__text {
        font-size: 1rem;
    }

    .exponential-agenda-intro__link {
        font-size: 0.9rem;
        padding: 8px 16px;
    }

    .exponential-agenda {
        padding: 50px 15px;
    }

    .exponential-agenda__title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .exponential-agenda__day-title {
        font-size: 1.3rem;
        margin-bottom: 30px;
    }

    .exponential-agenda__time-slot {
        padding-left: 45px;
    }

    .exponential-agenda__time {
        font-size: 0.9rem;
        padding-top: 0px;
    }

    .exponential-agenda__session {
        padding: 15px;
    }

    .exponential-agenda__speaker-info {
        gap: 15px;
    }

    .exponential-agenda__speaker-image {
        width: 50px;
        height: 50px;
    }

    .exponential-agenda__speaker-name {
        font-size: 1rem;
    }

    .exponential-agenda__speaker-title {
        font-size: 0.85rem;
    }

    .exponential-agenda__talk-title {
        font-size: 1rem;
    }

    .exponential-agenda__panel-members {
        gap: 10px;
        flex-wrap: wrap;
    }

    .exponential-agenda__panel-member {
        padding: 4px 8px 4px 0px;
        gap: 8px;
        flex: 1 1 100%;
        min-width: 0;
        max-width: 250px;
    }

    .exponential-agenda__panel-member-avatar {
        width: 50px;
        height: 50px;
        min-width: 35px;
        font-size: 0.7rem;
    }

    img.exponential-agenda__panel-member-avatar {
        width: 50px;
        height: 50px;
        min-width: 35px;
    }

    .exponential-agenda__panel-member-name {
        font-size: 0.85rem;
    }

    .exponential-agenda__panel-member-title {
        font-size: 0.75rem;
        line-height: 1.3;
        margin-bottom: 2px;
    }

    .exponential-agenda__panel-member-role {
        font-size: 0.7rem;
    }

    .agenda-modal__body {
        padding: 25px 15px;
    }

    .agenda-modal__title {
        font-size: 1.4rem;
    }

    .agenda-modal__subtitle {
        font-size: 0.95rem;
    }

    .agenda-modal__talk-title {
        font-size: 1rem;
    }

    .agenda-modal__abstract {
        font-size: 0.9rem;
    }

    .agenda-modal__panel-member {
        padding: 10px;
        gap: 12px;
    }

    .agenda-modal__panel-member-avatar {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 0.9rem;
    }

    .agenda-modal__panel-member-name {
        font-size: 0.95rem;
    }

    .agenda-modal__panel-member-title {
        font-size: 0.85rem;
        line-height: 1.3;
        margin-bottom: 3px;
    }

    .agenda-modal__panel-member-role {
        font-size: 0.85rem;
    }
}

@media (min-width: 1050px) {
    .exponential-agenda-intro {
        background-position: center -200px;
    }
}

/* Resources Section Styles */
.exponential-resources {
    padding: 80px 20px;
    background: var(--dark-blue);
    overflow-x: hidden;
    min-height: 60vh;
}

.exponential-resources__container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.exponential-resources__title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--light-gold);
}

.exponential-resources__description {
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--light-gold);
    opacity: 0.9;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Search and Filter Controls */
.exponential-resources__controls {
    margin-bottom: 50px;
}

.exponential-resources__search {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

#resource-search {
    background-color: transparent;
}

.exponential-resources__search-input {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    display: block;
    padding: 15px 20px;
    background: rgba(251, 251, 236, 0.1);
    border: 2px solid rgba(251, 251, 236, 0.2);
    border-radius: 8px;
    color: var(--light-gold);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.exponential-resources__search-input::placeholder {
    color: var(--light-gold);
    opacity: 0.5;
}

.exponential-resources__search-input:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(251, 251, 236, 0.15);
}

.exponential-resources__filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.exponential-resources__filter-btn {
    padding: 10px 25px;
    background: transparent;
    border: 2px solid rgba(251, 251, 236, 0.3);
    border-radius: 25px;
    color: var(--light-gold);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.exponential-resources__filter-btn:hover {
    border-color: var(--red);
    color: var(--red);
    transform: translateY(-2px);
}

.exponential-resources__filter-btn.active {
    background: var(--red);
    border-color: var(--red);
    color: var(--light-gold);
}

.exponential-resources__count {
    text-align: center;
    color: var(--light-gold);
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Resources Grid */
.exponential-resources__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.exponential-resources__card {
    background: rgba(251, 251, 236, 0.05);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(251, 251, 236, 0.1);
    display: flex;
    flex-direction: column;
}

.exponential-resources__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(250, 70, 57, 0.2);
    border-color: var(--red);
}

.exponential-resources__card-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: var(--dark-blue);
}

.exponential-resources__card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.3s ease;
}

.exponential-resources__card:hover .exponential-resources__card-image img {
    transform: scale(1.05);
}

.exponential-resources__card-type-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
}

.exponential-resources__card-type-badge--video {
    background: rgba(250, 70, 57, 0.9);
    color: var(--light-gold);
}

.exponential-resources__card-type-badge--pdf {
    background: rgba(210, 203, 155, 0.9);
    color: var(--dark-blue);
}

.exponential-resources__card-type-badge--slides {
    background: rgba(36, 194, 174, 0.9);
    color: var(--light-gold);
}

.exponential-resources__card-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.exponential-resources__card-title {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 10px 0;
    color: var(--light-gold);
}

.exponential-resources__card-speaker {
    font-size: 0.9rem;
    color: var(--red);
    margin: 0 0 12px 0;
    font-weight: 500;
}

.exponential-resources__card-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--light-gold);
    opacity: 0.8;
    margin: 0;
    flex: 1;
}

/* Resource Modal Styles */
.resource-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.resource-modal.active {
    opacity: 1;
    visibility: visible;
}

.resource-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.resource-modal__content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    margin: 5vh auto;
    background: var(--dark-blue);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.resource-modal.active .resource-modal__content {
    transform: scale(1);
}

.resource-modal__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: var(--light-gold);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.3s ease, transform 0.3s ease;
}

.resource-modal__close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.resource-modal__close svg {
    width: 20px;
    height: 20px;
}

.resource-modal__body {
    padding: 40px;
    overflow-y: auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    color: var(--light-gold);
}

.resource-modal__header {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(251, 251, 236, 0.2);
}

.resource-modal__header-text {
    flex: 1;
}

.resource-modal__title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--light-gold);
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.resource-modal__subtitle {
    font-size: 1.1rem;
    color: var(--red);
    margin: 0 0 15px 0;
    font-weight: 500;
}

.resource-modal__type-badge {
    display: inline-block;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.resource-modal__type-badge--video {
    background: rgba(250, 70, 57, 0.2);
    color: var(--red);
    border: 1px solid var(--red);
}

.resource-modal__type-badge--pdf {
    background: rgba(210, 203, 155, 0.2);
    color: var(--gold);
    border: 1px solid var(--gold);
}

.resource-modal__type-badge--slides {
    background: rgba(36, 194, 174, 0.2);
    color: var(--light-green);
    border: 1px solid var(--light-green);
}

.resource-modal__section {
    margin-bottom: 30px;
}

.resource-modal__section:last-child {
    margin-bottom: 0;
}

.resource-modal__section-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--red);
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.resource-modal__description {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(251, 251, 236, 0.2);
}

.resource-modal__abstract {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--light-gold);
    margin: 0;
    opacity: 0.85;
}

.resource-modal__content-area {
    flex: 1;
    min-height: 400px;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
}

/* When content-area contains video, size to content so full 16:9 + controls are visible */
.resource-modal__content-area:has(.resource-modal__video) {
    flex: 0 0 auto;
    min-height: 0;
    overflow: visible;
}

.resource-modal__video,
.resource-modal__slides {
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    position: relative;
}

.resource-modal__video iframe,
.resource-modal__slides iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.resource-modal__pdf-wrapper {
    width: 100%;
    height: 600px;
}

.resource-modal__pdf {
    width: 100%;
    height: 600px;
    border: none;
}

.resource-modal__pdf iframe,
.resource-modal__pdf-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.resource-modal__video--vimeo {
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 - full Vimeo player including controls */
    position: relative;
    flex-shrink: 0;
}

.resource-modal__video--vimeo iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.resource-modal__actions {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(251, 251, 236, 0.15);
}

.resource-modal__download-btn {
    display: inline-block;
    padding: 12px 24px;
    background: var(--red, #fa4639);
    color: var(--light-gold, #fbfbec);
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.2s, transform 0.2s;
}

.resource-modal__download-btn:hover {
    background: #e03d30;
    color: var(--light-gold, #fbfbec);
    transform: translateY(-1px);
}

/* Responsive Styles for Resources */
@media (max-width: 968px) {
    .exponential-resources__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .exponential-resources__title {
        font-size: 2rem;
    }

    .exponential-resources__description {
        font-size: 1rem;
    }
}

@media (max-width: 600px) {
    .exponential-resources {
        padding: 60px 15px;
    }

    .exponential-resources__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .exponential-resources__title {
        font-size: 1.75rem;
    }

    .exponential-resources__card-image {
        height: 180px;
    }

    .exponential-resources__card-content {
        padding: 20px;
    }

    .exponential-resources__card-title {
        font-size: 1.1rem;
    }

    .exponential-resources__filters {
        gap: 10px;
    }

    .exponential-resources__filter-btn {
        padding: 8px 18px;
        font-size: 0.85rem;
    }

    .resource-modal__content {
        width: 95%;
        max-height: 95vh;
        margin: 2.5vh auto;
    }

    .resource-modal__body {
        padding: 30px 20px;
    }

    .resource-modal__title {
        font-size: 1.5rem;
    }

    .resource-modal__subtitle {
        font-size: 1rem;
    }

    .resource-modal__pdf {
        height: 500px;
    }

    .resource-modal__close {
        top: 15px;
        right: 15px;
        width: 35px;
        height: 35px;
    }
}