* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=EB+Garamond:wght@400;500;600;700&display=swap');

body {
    font-family: 'EB Garamond', 'Times New Roman', serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

a {
    color: #333;
}

/* Hero Title */
.hero-title {
    color: #2E2E2E;
    font-size: 1.25rem;
    font-weight: 400;
    text-align: center;
    margin: 0 0 4rem 0;
    padding: 0;
    position: relative;
    z-index: 3;
}

/* Summit Title Overlay */
.summit-title-overlay {
    position: absolute;
    top: 3rem;
    left: 50%;
    transform: translateX(-50%);
    color: #2E2E2E;
    font-family: 'Iowan Old Style', 'Times New Roman', serif;
    font-size: 1rem;
    font-weight: 600;
    z-index: 10;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: #ffffff; /* White background for the page to show contrast */
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2.5vh 2.5vw; /* 2.5% padding on all sides to create 95% container */
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 2.5vh;
    left: 2.5vw;
    width: 95vw;
    height: 95vh;
    background: url('sf-backdrop-2.png') center center;
    background-size: cover;
    border-radius: 24px;
    z-index: 1;
}

.hero-content {
    max-width: 1000px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 95vh;
    padding-top: 8vh;
}

.hero-headline {
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-subheadline {
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-description {
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.3rem !important;
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 3rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

.hero-next-event {
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    margin-top: 1.5rem;
    margin-bottom: 0;
    text-align: center;
    letter-spacing: 0.02em;
}

.apply-button {
    background: #2E2E2E;
    color: white;
    border: 2px solid #2E2E2E;
    padding: 14px 28px;
    border-radius: 25px;
    font-family: 'Iowan Old Style', 'Times New Roman', serif;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    min-width: 160px;
}

.apply-button:after {
    content: '›';
    font-size: 1.3rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.apply-button:hover {
    background: white;
    color: #2E2E2E;
    border-color: #2E2E2E;
    transform: translateY(-2px);
}

.apply-button:hover:after {
    transform: translateX(4px);
}



/* Event Pill */
.event-pill {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 0.5rem 2.5rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    justify-content: center;
    margin: 0 auto 2rem auto;
    width: fit-content;
}

.spots-limited {
    color: white;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
}

.animated-dot {
    width: 8px;
    height: 8px;
    background: #ff4444;
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.event-separator {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    margin: 0 0.25rem;
}

.event-date {
    font-weight: 500;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    z-index: 3;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    display: flex;
    height: 2.5rem;
    width: 2.5rem;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-arrow:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
}

.arrow-icon {
    height: 1.5rem;
    width: 1.5rem;
    color: white;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Deliverables Section */
.deliverables {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.deliverables::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.02) 0%, transparent 70%);
    pointer-events: none;
}

.deliverables-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.deliverables-title {
    color: #2E2E2E;
    font-family: 'Iowan Old Style', 'Times New Roman', serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.01em;
    position: relative;
}

.deliverables-date {
    color: #666;
    font-family: 'Iowan Old Style', 'Times New Roman', serif;
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 2rem;
    letter-spacing: 0.02em;
}

.deliverables-text {
    color: #444;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    max-width: 850px;
    margin: 0 auto 3rem auto;
    letter-spacing: 0.005em;
}

/* Agenda Section */
.agenda {
    min-height: 100vh;
    background: #ffffff;
    padding: 5vh 2.5vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

.agenda a:hover,
.agenda a:active {
    color: #0a0a0a;
}

.agenda-container {
    max-width: 1000px;
    width: 100%;
    text-align: center;
}

.agenda-title {
    color: #2E2E2E;
    font-family: 'Iowan Old Style', 'Times New Roman', serif;
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.agenda-subtitle {
    color: #666;
    font-family: 'Iowan Old Style', 'Times New Roman', serif;
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 4rem;
    line-height: 1.6;
}

.agenda-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    text-align: left;
}

.workshops {
    display: flex;
    flex-direction: column;
}

.workshop-list {
    list-style: none;
    padding: 0;
    margin: 0 0 3rem 0;
}

.workshop-list li {
    color: #2E2E2E;
    font-family: 'Iowan Old Style', 'Times New Roman', serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.workshop-list li:before {
    content: '•';
    color: #2E2E2E;
    font-size: 1.25rem;
    position: absolute;
    left: 0;
    top: -0.1rem;
}

.workshop-list li em {
    font-style: italic;
}

.agenda-cta {
    background: #2E2E2E;
    color: white;
    border: 2px solid #2E2E2E;
    padding: 14px 28px;
    border-radius: 25px;
    font-family: 'Iowan Old Style', 'Times New Roman', serif;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    min-width: 160px;
    margin-top: 1rem;
}

.agenda-cta:after {
    content: '›';
    font-size: 1.3rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.agenda-cta:hover {
    background: white;
    color: #2E2E2E;
    border-color: #2E2E2E;
    transform: translateY(-2px);
}

.agenda-cta:hover:after {
    transform: translateX(4px);
}

.previous-event img {
    width: 512px;
    height: 323px;
    border-radius: 12px;
    overflow: hidden;
}

section.checklist {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    padding: 5vh 2.5vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checklist-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    text-align: left;
}

.checklist-container {
    max-width: 1000px;
    width: 100%;
    text-align: center;
}

.checklist-container .checklist {
    align-self: center;
    display: flex;
    flex-direction: column;
}

.checklist-title {
    color: #2E2E2E;
    font-family: 'Iowan Old Style', 'Times New Roman', serif;
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    text-align: left;
}

.checklist-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.checklist-items li {
    color: #2E2E2E;
    font-family: 'Iowan Old Style', 'Times New Roman', serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 0.8rem;
    padding-left: 2rem;
    position: relative;
}

.checklist-items li:before {
    content: '✓';
    color: #28a745;
    font-size: 1rem;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.checklist .filming img {
    width: 512px;
    height: 323px;
    border-radius: 12px;
    overflow: hidden;
}

/* Speakers Section */
.speakers {
    min-height: 100vh;
    background: #2E2E2E;
    padding: 5vh 2.5vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

.speakers-container {
    max-width: 1200px;
    width: 100%;
    text-align: center;
}

.speakers-title {
    color: white;
    font-family: 'Iowan Old Style', 'Times New Roman', serif;
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.speakers-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Iowan Old Style', 'Times New Roman', serif;
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 4rem;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4rem;
}

.speakers-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* Mobile responsiveness for horizontal cards */
@media (max-width: 768px) {
    .speaker-card {
        flex-direction: column;
        min-height: auto;
    }

    .speaker-image-container {
        width: 100%;
        height: 250px;
    }

    .speaker-content {
        padding: 1.5rem;
    }
}

.speaker-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: none;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    min-height: 320px;
    position: relative;
}

.speaker-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.speaker-image-container {
    width: 280px;
    flex-shrink: 0;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.speaker-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(46, 46, 46, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.speaker-headshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
    position: relative;
    z-index: 0;
}

.speaker-card:hover .speaker-headshot {
    transform: scale(1.05);
}

.speaker-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: flex-start;
    min-height: 0;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
}

.speaker-name {
    color: #2E2E2E;
    font-family: 'Iowan Old Style', 'Times New Roman', serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.speaker-title {
    color: #666;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.speaker-bio {
    color: #444;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.speaker-handle {
    color: #2E2E2E;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
    margin-top: auto;
    padding: 0.5rem 1rem;
    background: rgba(46, 46, 46, 0.05);
    border-radius: 8px;
    display: inline-block;
    width: fit-content;
}

.speaker-handle:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Special Guests Section */
.special-guests {
    background: #f8f9fa;
    padding: 5rem 2rem;
}

.special-guests-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.special-guests-title {
    color: #2E2E2E;
    font-family: 'Iowan Old Style', 'Times New Roman', serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.special-guests-subtitle {
    color: #666;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.guests-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 640px) {
    .guests-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 400px;
    }
}

.guest-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.guest-image-container {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: visible;
    margin-bottom: 1.5rem;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid #e9ecef;
    position: relative;
}

.guest-headshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 50%;
}

.company-logo-badge {
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    border: 2px solid #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    overflow: hidden;
}

.company-logo-placeholder {
    color: #666;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.8px;
}

.company-logo {
    width: 28px;
    height: 28px;
    object-fit: contain;
    border-radius: 3px;
}

/* Larger sizing for specific company logos */
.company-logo-yc {
    width: 34px;
    height: 34px;
}

.company-logo-posthog {
    width: 34px;
    height: 34px;
}

.company-logo-playground {
    width: 34px;
    height: 34px;
}

.guest-card:hover .guest-headshot {
    transform: scale(1.05);
}

.guest-content {
    text-align: center;
    width: 100%;
}

.guest-card:hover {
    transform: translateY(-2px);
    border-color: #d1d5db;
}

.guest-name {
    color: #2E2E2E;
    font-family: 'Iowan Old Style', 'Times New Roman', serif;
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 0.3rem;
    line-height: 1.3;
}

.guest-title {
    color: #666;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    line-height: 1.4;
}

.guest-bio {
    color: #555;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.guest-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.guest-link {
    color: #2E2E2E;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.8px;
    padding: 0.4rem 0.8rem;
    border: 1px solid #e9ecef;
    border-radius: 20px;
    transition: all 0.3s ease;
    display: inline-block;
    background: #f8f9fa;
}

.guest-link:hover {
    background: #2E2E2E;
    color: white;
    border-color: #2E2E2E;
    transform: translateY(-1px);
}

/* Testimonials Section */
.testimonials {
    background: #ffffff;
    padding: 6rem 2.5vw;
    position: relative;
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

.testimonials-title {
    color: #2E2E2E;
    font-family: 'Iowan Old Style', 'Times New Roman', serif;
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 4rem;
    line-height: 1.2;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    justify-content: center;
    align-items: start;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    max-width: 800px;
    text-align: left;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: #d1d5db;
}

.testimonial-text {
    color: #444;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-style: normal;
}

.see-more-link {
    color: #0066cc;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.see-more-link:hover {
    color: #004499;
    text-decoration: underline;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid #f0f0f0;
}

.author-info {
    flex: 1;
}

.author-name {
    color: #2E2E2E;
    font-family: 'Iowan Old Style', 'Times New Roman', serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.author-title {
    color: #666;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    margin: 0;
    line-height: 1.4;
}

.linkedin-link {
    color: #0077b5;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.linkedin-link:hover {
    background: rgba(0, 119, 181, 0.1);
    transform: scale(1.1);
}

hr.separator {
    margin: 0 2rem;
    border-top: 1px solid #2E2E2E;
}

/* Sponsor Section */
.sponsor-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 5rem 2rem;
    position: relative;
}

.sponsor-section a {
    color: #333;
}

.sponsor-section a:hover,
.sponsor-section a:active {
    color: #0a0a0a;
}

.sponsor-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.02) 0%, transparent 70%);
    pointer-events: none;
}

.sponsor-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.sponsor-content {
    text-align: center;
}

.sponsor-title {
    color: #2E2E2E;
    font-family: 'Iowan Old Style', 'Times New Roman', serif;
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.sponsor-subtitle {
    color: #555;
    font-family: 'Iowan Old Style', 'Times New Roman', serif;
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.sponsor-contact {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid #e9ecef;
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.sponsor-contact-intro {
    color: #666;
    font-family: 'Iowan Old Style', 'Times New Roman', serif;
    font-size: 1.1rem;
    font-weight: 400;
    margin: 0 0 1rem 0;
    letter-spacing: 0.01em;
}

.sponsor-email {
    color: #2E2E2E;
    font-family: 'Iowan Old Style', 'Times New Roman', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.02em;
    padding: 1rem 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.sponsor-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.benefit-item {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    text-align: left;
}

.benefit-item:hover {
    transform: translateY(-4px);
    border-color: #d1d5db;
}

.benefit-title {
    color: #2E2E2E;
    font-family: 'Iowan Old Style', 'Times New Roman', serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.benefit-description {
    color: #666;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
}

.sponsor-cta {
    background: white;
    padding: 3rem 2rem;
    border-radius: 16px;
    border: 1px solid #e9ecef;
    max-width: 500px;
    margin: 0 auto;
}

.sponsor-cta-text {
    color: #2E2E2E;
    font-family: 'Iowan Old Style', 'Times New Roman', serif;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.sponsor-button {
    background: #2E2E2E;
    color: white;
    border: 2px solid #2E2E2E;
    padding: 14px 28px;
    border-radius: 25px;
    font-family: 'Iowan Old Style', 'Times New Roman', serif;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    min-width: 160px;
}

.sponsor-button:after {
    content: '›';
    font-size: 1.3rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.sponsor-button:hover {
    background: white;
    color: #2E2E2E;
    border-color: #2E2E2E;
    transform: translateY(-2px);
}

.sponsor-button:hover:after {
    transform: translateX(4px);
}

/* Sponsor Logos */
.sponsor-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.sponsor-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
}

.logo-image {
    max-height: 80px;
    max-width: 250px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(0%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.logo-image:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* Specific logo sizing adjustments */
.logo-image[alt="Brex"] {
    max-height: 50px;
    max-width: 150px;
}

/* Sponsor CTA */
.sponsor-cta {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #f0f0f0;
}

.sponsor-text {
    color: #2E2E2E;
    font-family: 'Iowan Old Style', 'Times New Roman', serif;
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.sponsor-description {
    color: #555;
    font-family: 'Iowan Old Style', 'Times New Roman', serif;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .thank-you-title {
        font-size: 2.5rem;
    }

    .thank-you-text,
    .contact-text {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .speakers-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .speaker-image-container {
        height: 260px;
        width: 100%;
    }

    .speaker-card {
        flex-direction: column;
    }

    .speaker-content {
        padding: 1.25rem;
    }

    .speakers-title {
        font-size: 2.5rem;
    }

    .speaker-name {
        font-size: 1.1rem;
    }

    .speaker-title {
        font-size: 0.8rem;
    }

    .speaker-bio {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .agenda {
        width: fit-content;
        margin: 0 1rem;
    }

    .agenda-content,
    .checklist-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .workshop-list li {
        text-align: left;
        margin-left: 1rem;
        margin-right: 1rem;
    }

    .agenda-title {
        font-size: 2.5rem;
    }

    .checklist {
        text-align: left;
    }

    .checklist-items {
        margin: 0 0 0 3rem;
    }

    .agenda-cta {
        width: 85%;
    }

    .checklist .filming img,
    .previous-event img {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 768px) {
    .hero-content {
        padding: 1rem;
    }

    .hero-headline,
    .hero-subheadline {
        font-size: 2rem;
        text-shadow: 1px 1px #aeaeae;
    }

    .hero-title {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 1.5rem !important;
        padding: 0 1rem;
        line-height: 1.3 !important;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .apply-button,
    .learn-more-button,
    .agenda-cta {
        align-self: center;
        width: 100%;
    }
}

/* Footer */
.footer {
    background: transparent !important;
    padding: 2.5vh 2.5vw !important;
    border-top: none !important;
    margin-top: 0 !important;
    max-width: none !important;
    margin: 0 !important;
    background: #2E2E2E !important;
    border-radius: 20px !important;
    padding: 3rem !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.footer-container {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    background: #2E2E2E !important;
    border-radius: 20px !important;
    padding: 3rem !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.footer-content {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 0 !important;
    margin-bottom: 2rem !important;
}

.footer-main {
    flex: 1 !important;
}

.footer-title {
    color: white !important;
    font-family: 'Iowan Old Style', 'Times New Roman', serif !important;
    font-size: 1.4rem !important;
    font-weight: 600 !important;
    margin-bottom: 0.75rem !important;
    line-height: 1.3 !important;
    letter-spacing: -0.01em !important;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7) !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    font-size: 0.95rem !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;
    margin: 0 !important;
}

.footer-links {
    display: flex !important;
    gap: 2.5rem !important;
    align-items: center !important;
}

.footer-email {
    color: white !important;
    font-family: 'Iowan Old Style', 'Times New Roman', serif !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    background: #f8f9fa !important;
    padding: 0.5rem 1rem !important;
    border-radius: 4px !important;
}

.footer-link {
    color: white !important;
    font-family: 'Iowan Old Style', 'Times New Roman', serif !important;
    font-size: 1rem !important;
    font-weight: 400 !important;
    text-decoration: none !important;
    transition: opacity 0.3s ease !important;
    border-bottom: 1px solid transparent !important;
}

.footer-link:hover {
    opacity: 0.7 !important;
    border-bottom-color: white !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding-top: 2rem !important;
    text-align: center !important;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5) !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    font-size: 0.85rem !important;
    font-weight: 400 !important;
    margin: 0 !important;
    letter-spacing: 0.02em !important;
}

/* Footer Mobile Responsiveness */
@media (max-width: 768px) {
    .footer {
        padding: 2.5rem 1.5rem 1.5rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-links {
        gap: 1.5rem;
    }
}
