/* ========================================
   Swift Rockies - Design System
   Based on logo colors and modern tech conference aesthetics
   ======================================== */

/* Color Palette - Adjust these based on your actual logo colors */
:root {
    /* Primary colors - typically from logo (adjust as needed) */
    --primary: #FA7343; /* Swift orange - adjust if logo has different primary */
    --primary-dark: #E85D2F;
    --primary-light: #FF8C65;
    
    /* Secondary color - mountain/sky inspired */
    --secondary: #1E3A8A; /* Deep blue */
    --secondary-dark: #1E40AF;
    --secondary-light: #3B82F6;
    
    /* Accent color - for highlights, links, badges */
    --accent: #10B981; /* Teal/green accent */
    --accent-dark: #059669;
    
    /* Neutral colors */
    --bg-primary: #FFFFFF;
    --bg-secondary: #F9FAFB;
    --bg-tertiary: #F3F4F6;
    --text-primary: #111827;
    --text-secondary: #6B7280;
    --text-light: #9CA3AF;
    --border: #E5E7EB;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-lg: rgba(0, 0, 0, 0.15);

    --logo-green: #517b57;
    --logo-orange: #ca6935;

    /* Workshop Card Design System */
    --workshop-radius-outer: 24px;
    --workshop-radius-inner: 18px;
    --workshop-border: 1px solid rgba(0, 0, 0, 0.06);
    --workshop-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 12px rgba(0, 0, 0, 0.06);
    --workshop-shadow-hover: 0 4px 8px rgba(0, 0, 0, 0.06), 0 12px 24px rgba(0, 0, 0, 0.1);
    --workshop-spacing-xs: 0.5rem;  /* 8px */
    --workshop-spacing-sm: 0.75rem; /* 12px */
    --workshop-spacing-md: 1rem;    /* 16px */
    --workshop-spacing-lg: 1.25rem; /* 20px */
    --workshop-spacing-xl: 1.5rem;  /* 24px */
    --workshop-spacing-2xl: 2rem;   /* 32px */
    --workshop-easing: cubic-bezier(0.4, 0, 0.2, 1);
    --workshop-easing-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Typography */
:root {
    /* Font stacks - modern, tech-friendly */
    --font-heading: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Font sizes */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

h1 { font-size: var(--text-5xl); }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-3xl); }
h4 { font-size: var(--text-2xl); }
h5 { font-size: var(--text-xl); }
h6 { font-size: var(--text-lg); }

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

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover, a:focus {
    color: var(--primary-dark);
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

a:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.lead {
    font-size: var(--text-xl);
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

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

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px var(--shadow);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar-scrolled {
    box-shadow: 0 4px 20px var(--shadow-lg);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-primary);
    font-weight: 500;
    font-size: var(--text-sm);
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.2s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link:focus::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.nav-toggle-active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle-active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle-active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--bg-primary);
        width: 100%;
        text-align: left;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px var(--shadow);
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu-active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: 1rem 1.5rem;
        width: 100%;
    }

    .nav-link::after {
        display: none;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: 600;
    text-align: center;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-decoration: none;
    line-height: 1.5;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(250, 115, 67, 0.3);
}

.btn-secondary {
    background-color: var(--secondary-light);
    color: white;
}

.btn-secondary:hover,
.btn-secondary:focus {
    background-color: var(--secondary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.3);
}

.btn-sponsor {
    background-color: var(--logo-green);
    color: white;
    outline: none;
}

.btn-sponsor:hover,
.btn-sponsor:focus {
    background-color: var(--logo-green);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--logo-green);
    outline: none !important;
}

.btn-sponsor:focus-visible {
    outline: 2px solid var(--logo-green) !important;
    outline-offset: 2px;
}

/* Override global link hover and focus styles for sponsor button */
a.btn-sponsor:hover,
a.btn-sponsor:focus {
    outline: none !important;
    color: white !important;
}

a.btn-sponsor:focus-visible {
    outline: 2px solid var(--logo-green) !important;
    outline-offset: 2px;
}

.btn-outline {
    background-color: transparent;
    color: var(--text-primary);
    border: 2px solid var(--text-primary);
    font-weight: 600;
    outline: none;
}

.btn-outline:hover,
.btn-outline:focus {
    background-color: var(--text-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    outline: none !important;
}

.btn-outline:focus-visible {
    outline: 2px solid var(--text-primary) !important;
    outline-offset: 2px;
}

/* Override global link hover and focus styles for outline button */
a.btn-outline:hover,
a.btn-outline:focus {
    outline: none !important;
    color: var(--text-primary) !important;
}

a.btn-outline:hover {
    color: white !important;
}

a.btn-outline:focus-visible {
    outline: 2px solid var(--text-primary) !important;
    outline-offset: 2px;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Hero Section */
.hero {
    padding: 8rem 0 6rem;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-image: url('hero_bg_3.png');
    background-size: cover;
    background-position: center;
    background-repeat: repeat-x;
}

.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    z-index: 0;
}

/* Ensure hero section accommodates full image with proper aspect ratio */
.hero {
    min-height: 80vh;
    background-color: var(--bg-secondary);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: linear-gradient(135deg, rgba(255, 255, 255, 0.75) 0%, rgba(249, 250, 251, 0.85) 100%); */
    z-index: 1;
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.hero-logo {
    height: 120px;
    width: auto;
    margin: 0 auto 2rem;
    display: block;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5.5rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: var(--text-xl);
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-weight: 200;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-details {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-details p {
    font-size: var(--text-xl);
    color: var(--text-primary);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    text-shadow: none;
}

.countdown-timer {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin: 2.5rem 0;
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.countdown-number {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.countdown-label {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .hero {
        padding: 5rem 0 4rem;
        min-height: 500px;
        background-size: contain;
    }

    /* .hero::before {
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(249, 250, 251, 0.9) 100%);
    } */

    /* Hide decorative elements on mobile */
    .hero-decoration {
        display: none;
    }

    .hero-logo {
        height: 80px;
        margin-bottom: 1.5rem;
    }

    .hero-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
        font-weight: 800;
    }

    .hero-subtitle {
        font-size: var(--text-lg);
        margin-bottom: 1.5rem;
    }

    .hero-details {
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 2rem;
        align-items: center;
        padding: 1.25rem 1.5rem;
    }

    .hero-details p {
        font-size: var(--text-lg);
        font-weight: 600;
    }

    .countdown-timer {
        gap: 1rem;
        margin: 2rem 0;
    }

    .countdown-item {
        min-width: 70px;
        padding: 0.75rem 1rem;
    }

    .countdown-number {
        font-size: 2rem;
    }

    .countdown-label {
        font-size: var(--text-xs);
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .hero {
        min-height: 450px;
    }
}

/* Section Styles */
.section {
    padding: 5rem 0;
}

.section-alt {
    background-color: var(--bg-secondary);
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
    font-size: var(--text-4xl);
}

.section-subtitle {
    text-align: center;
    font-size: var(--text-lg);
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-content p {
    font-size: var(--text-lg);
    margin-bottom: 1.5rem;
}

/* Tickets Section */
.tickets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.ticket-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px var(--shadow);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ticket-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow-lg);
}

.ticket-card-featured {
    border: 3px solid var(--primary);
    transform: scale(1.05);
}

.ticket-card.ticket-selected {
    border: 3px solid var(--logo-green);
    box-shadow: 0 8px 30px rgba(81, 123, 87, 0.3);
}

.ticket-card.ticket-disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

.ticket-card.ticket-disabled:hover {
    transform: none;
    box-shadow: 0 4px 20px var(--shadow);
}

.ticket-disabled-message {
    text-align: center;
    padding: 1rem;
    background-color: var(--bg-tertiary);
    border-radius: 8px;
    font-size: var(--text-sm);
    color: var(--text-secondary);
    font-style: italic;
    margin-top: 1rem;
}

.ticket-select-btn.btn-selected {
    background-color: var(--logo-green);
}

.ticket-select-btn.btn-selected:hover {
    background-color: var(--logo-green);
}

.ticket-price .original-price {
    font-size: var(--text-xl);
    color: var(--text-light);
    text-decoration: line-through;
    margin-left: 0.5rem;
}

@media (max-width: 768px) {
    .ticket-card-featured {
        transform: scale(1);
    }
}

.ticket-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--accent);
    color: white;
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    font-size: var(--text-xs);
    font-weight: 600;
}

.ticket-name {
    font-size: var(--text-2xl);
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.ticket-price {
    display: flex;
    align-items: baseline;
    margin-bottom: 2rem;
    gap: 0.25rem;
}

.ticket-price .currency {
    font-size: var(--text-2xl);
    color: var(--text-secondary);
}

.ticket-price .amount {
    font-size: var(--text-5xl);
    font-weight: 700;
    color: var(--primary);
}

.ticket-price .period {
    font-size: var(--text-lg);
    color: var(--text-secondary);
}

.ticket-features {
    list-style: none;
    margin-bottom: 2rem;
}

.ticket-features li {
    padding: 0.75rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
}

.ticket-features li:last-child {
    border-bottom: none;
}

.ticket-note {
    text-align: center;
    max-width: 700px;
    margin: 3rem auto 0;
    font-size: var(--text-sm);
    color: var(--text-secondary);
}

/* Tickets Disabled Form */
.tickets-disabled-form-container {
    max-width: 600px;
    margin: 0 auto;
}

.tickets-disabled-content {
    background: white;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 4px 20px var(--shadow);
    text-align: center;
}

.tickets-disabled-headline {
    font-size: var(--text-3xl);
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.tickets-disabled-body {
    font-size: var(--text-base);
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.tickets-disabled-form {
    margin-bottom: 1.5rem;
}

.tickets-disabled-form .form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.tickets-disabled-form label {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: var(--text-sm);
}

.tickets-disabled-form input[type="email"] {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--text-primary);
    background-color: white;
    border: 2px solid var(--border);
    border-radius: 8px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.tickets-disabled-form input[type="email"]:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(250, 115, 67, 0.1);
}

.tickets-disabled-form input[type="email"]::placeholder {
    color: var(--text-light);
}

.tickets-disabled-form .btn {
    width: 100%;
    margin-top: 0.5rem;
}

.tickets-disabled-microcopy {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    margin-top: 1rem;
    font-style: italic;
}

@media (max-width: 768px) {
    .tickets-disabled-content {
        padding: 2rem 1.5rem;
    }
    
    .tickets-disabled-headline {
        font-size: var(--text-2xl);
    }
}

/* Workshops Section */
#workshops {
    background-image: url('/assets/workshops/workshops_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

#workshops::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 0;
}

#workshops .container {
    position: relative;
    z-index: 1;
}

.workshops-title {
    font-size: var(--text-2xl);
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    text-align: center;
}

.workshops-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: var(--text-base);
}

/* ========================================
   Workshop Cards - Premium Design System
   ======================================== */

.workshops-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: var(--workshop-spacing-2xl);
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Workshop Card Container */
.workshop-card {
    background: var(--bg-primary);
    border-radius: var(--workshop-radius-outer);
    border: var(--workshop-border);
    box-shadow: var(--workshop-shadow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 200ms var(--workshop-easing),
                box-shadow 200ms var(--workshop-easing),
                border-color 200ms var(--workshop-easing);
    cursor: pointer;
    position: relative;
}

.workshop-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--workshop-shadow-hover);
    border-color: rgba(0, 0, 0, 0.1);
}

.workshop-card:active {
    transform: translateY(-2px);
    transition-duration: 100ms;
}

.workshop-card:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.workshop-card.workshop-selected {
    border-color: var(--primary);
    box-shadow: var(--workshop-shadow-hover), 0 0 0 1px var(--primary);
}

/* Card Header */
.workshop-card-header {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: var(--workshop-spacing-2xl) var(--workshop-spacing-xl);
}

.workshop-card-header-content {
    padding: 0;
}

/* Card Title Row */
.workshop-card-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--workshop-spacing-md);
    margin-bottom: var(--workshop-spacing-md);
}

/* Card Title */
.workshop-card-title {
    font-family: var(--font-heading);
    font-size: clamp(1.375rem, 2.5vw, 1.75rem); /* 22px - 28px */
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: white;
    margin: 0;
    flex: 1;
    min-width: 0;
}

/* Card Price */
.workshop-card-price-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.375rem;
    flex-shrink: 0;
}

/* Active tier (current price) */
.workshop-card-price-tier-active {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
}

.workshop-card-price-tier-active .workshop-card-price-tier-label {
    font-family: var(--font-body);
    font-size: clamp(0.625rem, 1.5vw, 0.75rem); /* 10px - 12px */
    font-weight: 600;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.workshop-card-price {
    font-family: var(--font-heading);
    font-size: clamp(1.125rem, 2vw, 1.375rem); /* 18px - 22px */
    font-weight: 700;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.95);
    white-space: nowrap;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    backdrop-filter: blur(4px);
}

/* Upcoming tiers (future/higher prices) */
.workshop-card-price-tier-upcoming {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.125rem;
    opacity: 0.7;
}

.workshop-card-price-tier-upcoming .workshop-card-price-tier-label {
    font-family: var(--font-body);
    font-size: clamp(0.5rem, 1.2vw, 0.625rem); /* 8px - 10px */
    font-weight: 500;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.workshop-card-price-upcoming {
    font-family: var(--font-heading);
    font-size: clamp(0.875rem, 1.6vw, 1rem); /* 14px - 16px */
    font-weight: 600;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
}


/* Speaker Row */
.workshop-card-speaker-row {
    display: flex;
    align-items: center;
    gap: var(--workshop-spacing-md);
}

.workshop-card-speaker-avatar-wrapper {
    position: relative;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
}

.workshop-card-speaker-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2.5px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    display: block;
}

.workshop-card-speaker-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}

.workshop-card-speaker-name {
    font-family: var(--font-body);
    font-size: 0.9375rem; /* 15px */
    font-weight: 600;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.98);
    margin: 0;
}

.workshop-card-date {
    font-family: var(--font-body);
    font-size: 0.8125rem; /* 13px */
    font-weight: 400;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}


/* Card Body */
.workshop-card-body {
    padding: var(--workshop-spacing-xl);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.workshop-card-description {
    font-family: var(--font-body);
    font-size: 0.9375rem; /* 15px */
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}


/* Card Footer */
.workshop-card-footer {
    padding: 0 var(--workshop-spacing-xl) var(--workshop-spacing-xl);
    margin-top: var(--workshop-spacing-md);
}

/* Requirements Pill */
.workshop-card-requirements-pill {
    display: inline-flex;
    align-items: center;
    gap: var(--workshop-spacing-sm);
    padding: var(--workshop-spacing-sm) var(--workshop-spacing-md);
    background: var(--bg-tertiary);
    border-radius: var(--workshop-radius-inner);
    font-family: var(--font-body);
    font-size: 0.8125rem; /* 13px */
    line-height: 1.4;
    color: var(--text-secondary);
    align-self: flex-start;
}

.workshop-card-requirements-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    color: var(--primary);
    opacity: 0.8;
}

.workshop-card-requirements-text {
    font-style: normal;
    font-weight: 400;
}

/* Card Actions */

/* Responsive Design */
@media (max-width: 768px) {
    .workshops-grid {
        grid-template-columns: 1fr;
        gap: var(--workshop-spacing-xl);
    }

    .workshop-card-header {
        padding: var(--workshop-spacing-xl) var(--workshop-spacing-lg);
    }
    
    .workshop-card-title-row {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--workshop-spacing-sm);
    }
    
    .workshop-card-price-wrapper {
        align-self: flex-end;
    }

    .workshop-card-body,
    .workshop-card-footer {
        padding-left: var(--workshop-spacing-lg);
        padding-right: var(--workshop-spacing-lg);
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .workshops-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1025px) {
    .workshops-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.workshop-info-card {
    margin-top: 1.5rem;
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px var(--shadow);
    animation: fadeIn 0.3s ease;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.workshop-info-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 2rem;
}

.workshop-info-name {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    flex: 1;
    line-height: 1.3;
}

.workshop-info-price {
    font-size: var(--text-3xl);
    color: var(--primary);
    font-weight: 700;
    white-space: nowrap;
}

.workshop-info-description {
    font-size: var(--text-base);
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.workshop-info-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.workshop-info-detail-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: var(--text-base);
    color: var(--text-primary);
}

.workshop-info-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.workshop-speaker-image {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--border);
}

.workshop-info-text {
    flex: 1;
}

.workshop-info-text strong {
    color: var(--text-primary);
    font-weight: 600;
    display: block;
    margin-bottom: 0.25rem;
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
}

/* Responsive styles for workshop info card */
@media (max-width: 768px) {
    .workshop-info-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .workshop-info-name {
        font-size: var(--text-xl);
    }
    
    .workshop-info-price {
        font-size: var(--text-2xl);
    }
    
    .workshop-info-card {
        padding: 2rem 1.5rem;
    }
    
    .workshop-info-details {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* ========================================
   LABS SECTION
   ======================================== */

.labs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: var(--workshop-spacing-2xl);
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Lab Card Container */
.lab-card {
    background: var(--bg-primary);
    border-radius: var(--workshop-radius-outer);
    border: 2px solid var(--secondary);
    box-shadow: 0 4px 20px rgba(16, 185, 177, 0.08), 0 0 0 1px rgba(16, 185, 177, 0.05);
    overflow: hidden;
    transition: all var(--motion-fast);
    display: flex;
    flex-direction: column;
    position: relative;
}

.lab-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    z-index: 1;
}

.lab-card:active {
    transform: translateY(-3px);
    transition-duration: 100ms;
}

.lab-card:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Lab Card Header */
.lab-card-header {
    background: linear-gradient(180deg, rgba(16, 185, 177, 0.03), transparent);
    padding: var(--workshop-spacing-2xl) var(--workshop-spacing-xl);
    position: relative;
    border-bottom: 1px solid rgba(16, 185, 177, 0.1);
}

.lab-card-header-content {
    padding: 0;
}

/* Lab Card Title Row */
.lab-card-title-row {
    margin-bottom: var(--workshop-spacing-sm);
    position: relative;
}

/* Lab Card Title */
.lab-card-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 2.5vw, 1.875rem); /* 24px - 30px */
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin: 0;
}

/* Lab Card Price Container */
.lab-card-price-container {
    margin-bottom: var(--workshop-spacing-md);
}

.lab-card-badge::before {
    content: '💡';
    font-size: 0.875rem;
    filter: grayscale(0.2);
}

/* Lab Card Price */
.lab-card-price-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--workshop-spacing-md);
    flex-wrap: wrap;
}

/* Active tier (current price) */
.lab-card-price-tier-active {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
}

.lab-card-price-tier-active .lab-card-price-tier-label {
    font-family: var(--font-body);
    font-size: clamp(0.625rem, 1.5vw, 0.75rem); /* 10px - 12px */
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.lab-card-price {
    font-family: var(--font-heading);
    font-size: clamp(1.125rem, 2vw, 1.375rem); /* 18px - 22px */
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
    white-space: nowrap;
    padding: 0.375rem 0.875rem;
    background: linear-gradient(135deg, rgba(250, 115, 67, 0.1), rgba(16, 185, 177, 0.1));
    border-radius: 8px;
    border: 1px solid rgba(250, 115, 67, 0.2);
}

/* Upcoming tiers (future/higher prices) */
.lab-card-price-tier-upcoming {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.125rem;
    opacity: 0.7;
}

.lab-card-price-tier-upcoming .lab-card-price-tier-label {
    font-family: var(--font-body);
    font-size: clamp(0.5rem, 1.2vw, 0.625rem); /* 8px - 10px */
    font-weight: 500;
    line-height: 1.2;
    color: var(--text-secondary);
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.lab-card-price-upcoming {
    font-family: var(--font-heading);
    font-size: clamp(0.875rem, 1.6vw, 1rem); /* 14px - 16px */
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-secondary);
    opacity: 0.6;
    white-space: nowrap;
}

/* Speaker Row */
.lab-card-speaker-row {
    display: flex;
    align-items: center;
    gap: var(--workshop-spacing-md);
}

.lab-card-speaker-avatar-wrapper {
    position: relative;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
}

.lab-card-speaker-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--secondary);
    box-shadow: 0 2px 8px rgba(16, 185, 177, 0.15);
    display: block;
}

.lab-card-speaker-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}

.lab-card-speaker-name {
    font-family: var(--font-body);
    font-size: 0.9375rem; /* 15px */
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-primary);
    margin: 0;
}

.lab-card-date {
    font-family: var(--font-body);
    font-size: 0.8125rem; /* 13px */
    line-height: 1.3;
    color: var(--text-secondary);
    margin: 0;
}

/* Lab Card Body */
.lab-card-body {
    padding: var(--workshop-spacing-xl);
    flex: 1;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, transparent, rgba(16, 185, 177, 0.02));
}

.lab-card-description {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

.lab-card-description strong {
    font-weight: 600;
    color: var(--text-primary);
}

.lab-card-description a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.lab-card-description a:hover {
    text-decoration: underline;
}

/* Lab Card Footer */
.lab-card-footer {
    padding: 0 var(--workshop-spacing-xl) var(--workshop-spacing-xl);
}

.lab-card-requirements-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.875rem;
    background: linear-gradient(135deg, rgba(16, 185, 177, 0.08), rgba(250, 115, 67, 0.08));
    border-radius: 8px;
    border: 1px solid rgba(16, 185, 177, 0.15);
    font-family: var(--font-body);
    font-size: 0.8125rem; /* 13px */
    line-height: 1.4;
    color: var(--text-secondary);
    align-self: flex-start;
}

.lab-card-requirements-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    color: var(--secondary);
    opacity: 0.8;
}

.lab-card-requirements-text {
    font-style: normal;
    font-weight: 400;
}

/* Responsive Design for Labs */
@media (max-width: 768px) {
    .labs-grid {
        grid-template-columns: 1fr;
        gap: var(--workshop-spacing-xl);
    }

    .lab-card-header {
        padding: var(--workshop-spacing-xl) var(--workshop-spacing-lg);
    }

    .lab-card-price-wrapper {
        flex-direction: column;
        gap: var(--workshop-spacing-sm);
    }

    .lab-card-body,
    .lab-card-footer {
        padding-left: var(--workshop-spacing-lg);
        padding-right: var(--workshop-spacing-lg);
    }
}

/* Tito Button Container */
.tito-button-container {
    margin-top: 4rem;
    text-align: center;
}

.tito-button-container:empty {
    display: none;
}

@media (max-width: 768px) {
    .workshops-grid {
        grid-template-columns: 1fr;
    }
    
    .workshop-header {
        flex-direction: column;
    }
    
    .tito-button-container {
        margin-top: 3rem;
    }
}

/* Speakers Section */
.speakers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.speaker-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 2px 10px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.speaker-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow-lg);
}

.speaker-card-in-progress {
    position: relative;
    opacity: 0.9;
    border: 2px dashed var(--border);
}

.speaker-card-in-progress:hover {
    opacity: 1;
    border-color: var(--primary);
}

.speaker-status-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--accent);
    color: white;
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.speaker-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    position: relative;
}

.speaker-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.speaker-initials {
    font-size: var(--text-3xl);
    font-weight: 700;
    color: white;
    font-family: var(--font-heading);
}

.speaker-name {
    font-size: var(--text-xl);
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.speaker-role {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.75rem;
}

.speaker-topic {
    font-size: var(--text-xl);
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
    font-family: var(--font-heading);
}

.speaker-topic-placeholder {
    color: var(--text-secondary);
    font-weight: 500;
    font-style: italic;
    font-size: var(--text-lg);
}

.speaker-bio {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.speaker-next-steps {
    font-size: var(--text-xs);
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background-color: var(--bg-tertiary);
    border-radius: 6px;
    line-height: 1.5;
}

.speaker-next-steps strong {
    color: var(--text-primary);
    font-style: normal;
}

.speaker-social {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.speaker-social .social-link {
    font-size: var(--text-xs);
    padding: 0.375rem 0.75rem;
    background-color: var(--bg-tertiary);
    border-radius: 6px;
    color: var(--text-primary);
    font-weight: 500;
    transition: all 0.2s ease;
    text-decoration: none;
}

.speaker-social .social-link:hover,
.speaker-social .social-link:focus {
    background-color: var(--primary);
    color: white;
    transform: translateY(-1px);
    outline: none !important;
}

.speaker-social .social-link:focus-visible {
    outline: 2px solid var(--primary) !important;
    outline-offset: 2px;
}

.speaker-card-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 2px dashed var(--border);
    background-color: var(--bg-tertiary);
}

.speaker-placeholder-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.speaker-placeholder-title {
    font-size: var(--text-xl);
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.speaker-placeholder-text {
    font-size: var(--text-base);
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 90%;
    margin: 0;
}

/* Agenda Section */
.agenda-placeholder {
    max-width: 700px;
    margin: 3rem auto;
    text-align: center;
}

.agenda-placeholder-content {
    background: white;
    border-radius: 12px;
    padding: 4rem 3rem;
    box-shadow: 0 4px 20px var(--shadow);
}

.agenda-placeholder-text {
    font-size: var(--text-xl);
    color: var(--text-primary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.agenda-placeholder-note {
    font-size: var(--text-base);
    color: var(--text-secondary);
    font-style: italic;
    margin: 0;
}

.agenda-container {
    max-width: 900px;
    margin: 0 auto;
}

.agenda-day {
    margin-bottom: 4rem;
}

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

.agenda-day-title {
    font-size: var(--text-3xl);
    color: var(--primary);
    margin-bottom: 2rem;
    text-align: center;
}

.agenda-timeline {
    position: relative;
    padding-left: 3rem;
}

.agenda-timeline::before {
    content: '';
    position: absolute;
    left: 0.75rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
}

.agenda-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.agenda-item::before {
    content: '';
    position: absolute;
    left: -2.5rem;
    top: 0.5rem;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: var(--primary);
    border: 3px solid white;
    box-shadow: 0 0 0 2px var(--primary);
}

.agenda-time {
    font-weight: 600;
    color: var(--primary);
    font-size: var(--text-sm);
    margin-bottom: 0.5rem;
}

.agenda-content h4 {
    font-size: var(--text-xl);
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.agenda-content p {
    font-size: var(--text-base);
    color: var(--text-secondary);
    margin: 0;
}

@media (max-width: 768px) {
    .agenda-timeline {
        padding-left: 2rem;
    }

    .agenda-item {
        padding-left: 1.5rem;
    }

    .agenda-item::before {
        left: -1.75rem;
    }
}

/* Venue Section */
.venue-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.venue-text h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.venue-text p {
    margin-bottom: 1.5rem;
}

.travel-info {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: var(--bg-tertiary);
    border-radius: 8px;
}

.travel-info h4 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.venue-visuals {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.venue-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow);
}

.zoo-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 12px;
}

.venue-map {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow);
}

.venue-map iframe {
    width: 100%;
    height: 400px;
    border: 0;
    display: block;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    border: 2px dashed var(--border);
}

.map-placeholder p {
    margin: 0.5rem 0;
    font-size: var(--text-lg);
}

.map-note {
    font-size: var(--text-sm);
    color: var(--text-light);
}

@media (max-width: 768px) {
    .venue-content {
        grid-template-columns: 1fr;
    }
}

/* Sponsors Section */
.section-sponsors {
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-secondary) 100%);
}

.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.sponsor-placeholder {
    background: white;
    border-radius: 8px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 2px 10px var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px;
    color: var(--text-light);
    font-size: var(--text-sm);
}

.sponsor-cta {
    background: white;
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    margin-top: 3rem;
    box-shadow: 0 4px 20px var(--shadow);
}

.sponsor-cta h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.sponsor-cta p {
    max-width: 600px;
    margin: 0 auto 2rem;
}

.sponsors-email-info {
    max-width: 600px;
    margin: 0 auto 2rem;
    padding: 1.25rem 1.5rem;
    background-color: var(--bg-tertiary);
    border-left: 4px solid var(--primary);
    border-radius: 8px;
    font-size: var(--text-base);
    color: var(--text-primary);
    font-weight: 500;
    line-height: 1.6;
}

.sponsors-email-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
    transition: color 0.2s ease;
}

/* Sponsors Paths Grid */
.sponsors-paths-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.sponsor-path-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.sponsor-path-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px var(--shadow-lg);
}

.sponsor-path-card-bolded {
    box-shadow: 0 10px 35px rgba(250, 115, 67, 0.25);
    transform: scale(1.02);
}

.sponsor-path-card-bolded:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 35px rgba(250, 115, 67, 0.25);
}

.sponsor-path-title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.75rem 0;
}

.sponsor-path-subtitle {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--primary);
    margin: 0 0 1rem 0;
}

.sponsor-path-description {
    font-size: var(--text-base);
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
    flex: 1;
}

.sponsor-path-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    color: white;
    background-color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: var(--text-base);
    text-decoration: none;
    margin-top: auto;
    padding: 0.875rem 1.75rem;
    border-radius: 8px;
    border: 2px solid var(--primary);
    transition: all 0.3s ease;
    width: fit-content;
    box-shadow: 0 2px 8px rgba(250, 115, 67, 0.2);
}

.sponsor-path-action::after {
    content: '→';
    font-size: 1.1em;
    transition: transform 0.3s ease;
    display: inline-block;
}

.sponsor-path-action:hover {
    color: white;
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(250, 115, 67, 0.35);
}

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

.sponsor-path-action:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(250, 115, 67, 0.2);
}

/* Custom Sponsors Section */
.sponsor-custom-section {
    background: white;
    border-radius: 12px;
    padding: 3rem;
    margin-top: 3rem;
    box-shadow: 0 4px 20px var(--shadow);
}

.sponsor-custom-title {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.75rem 0;
}

.sponsor-custom-subtitle {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--primary);
    margin: 0 0 1.5rem 0;
}

.sponsor-custom-copy {
    font-size: var(--text-base);
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0 0 2rem 0;
}

.sponsor-custom-examples-title {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 1rem 0;
}

.sponsor-custom-examples-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.sponsor-custom-examples-list li {
    font-size: var(--text-base);
    color: var(--text-secondary);
    line-height: 1.7;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.sponsor-custom-examples-list li::before {
    content: "•";
    color: var(--primary);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Email info in custom sponsors section should be left-aligned */
.sponsor-custom-section .sponsors-email-info {
    margin: 0 0 2rem 0;
    text-align: left;
}

/* Strategic Add-Ons */
.sponsor-addon-option {
    background: var(--bg-secondary);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--primary);
}

.sponsor-addon-name {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.75rem 0;
}

.sponsor-contact-info {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    margin: 1rem 0;
}

.sponsor-contact-info a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.sponsor-contact-info a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .sponsors-paths-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .sponsor-path-card {
        padding: 2rem;
    }
    
    .sponsor-custom-section {
        padding: 2rem;
    }
}

.sponsors-email-link:hover,
.sponsors-email-link:focus {
    color: var(--primary-dark);
    text-decoration: underline;
}

.sponsor-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Call for Speakers */
.cfp-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.cfp-info h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.cfp-info ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.cfp-info li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
}

.cfp-info li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.cfp-form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow);
}

.cfp-form h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
    font-size: var(--text-sm);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: var(--text-base);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(250, 115, 67, 0.1);
}

.cfp-alternative {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: var(--bg-tertiary);
    border-radius: 8px;
    text-align: center;
}

.form-success-message {
    background: white;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 4px 20px var(--shadow);
    text-align: center;
    margin-bottom: 2rem;
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-success-content h3 {
    color: var(--accent);
    font-size: var(--text-3xl);
    margin-bottom: 1rem;
    font-weight: 700;
}

.form-success-content p {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .cfp-content {
        grid-template-columns: 1fr;
    }
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 10px var(--shadow);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: transparent;
    border: none;
    text-align: left;
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s ease;
}

.faq-question:hover,
.faq-question:focus {
    background-color: var(--bg-secondary);
    outline: none;
}

.faq-question:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: -2px;
}

.faq-icon {
    font-size: var(--text-2xl);
    color: var(--primary);
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item-active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item-active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
    color: var(--text-secondary);
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.contact-info p {
    margin-bottom: 1.5rem;
}

.contact-info a {
    color: var(--primary);
    font-weight: 500;
}

.social-links {
    margin-top: 2rem;
}

.social-links h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: var(--text-lg);
}

.social-icons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    padding: 0.5rem 1rem;
    background-color: var(--bg-tertiary);
    border-radius: 6px;
    font-size: var(--text-sm);
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.social-link:hover,
.social-link:focus {
    background-color: var(--primary);
    color: white;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow);
}

.contact-form h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
    }
}

/* Footer */
.footer {
    background-color: var(--text-primary);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--text-sm);
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 1rem;
    /* Show logo in original colors - if you need it white on dark background, 
       consider using a white version of the logo or adjust the filter */
    opacity: 1;
}

.footer-links h4,
.footer-contact h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: var(--text-lg);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-links a:focus {
    color: var(--primary-light);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.footer-contact a {
    color: var(--primary-light);
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--text-sm);
    margin: 0;
}

/* Accessibility improvements */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary);
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

/* Print styles */
@media print {
    .navbar,
    .footer,
    .hero-buttons,
    .btn {
        display: none;
    }

    .hero {
        margin-top: 0;
        padding: 2rem 0;
    }
}

.tito-ticket-list {
    background-color: #b11998;
}

/* Maintenance Mode */
.maintenance-mode {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    padding: 2rem 0;
}

.maintenance-mode-content {
    text-align: center;
    max-width: 600px;
    padding: 3rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 40px var(--shadow-lg);
}

.maintenance-logo {
    height: 80px;
    width: auto;
    margin-bottom: 2rem;
}

.maintenance-title {
    font-size: var(--text-4xl);
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.maintenance-body {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.maintenance-microcopy {
    font-size: var(--text-sm);
    color: var(--text-light);
    font-style: italic;
    margin-top: 1.5rem;
}

@media (max-width: 768px) {
    .maintenance-mode-content {
        padding: 2rem 1.5rem;
    }
    
    .maintenance-title {
        font-size: var(--text-3xl);
    }
    
    .maintenance-logo {
        height: 60px;
    }
}

/* Example: Change the text color of ticket titles */
.tito-ticket-name {
    color: #4a4a4a;
}

/* Tito Button Styling to match website theme */
.tito-widget-button {
    background-color: var(--primary) !important;
    color: white !important;
    font-family: var(--font-heading) !important;
    font-weight: 800 !important;
    font-size: var(--text-xl) !important;
    padding: 1.5rem 4rem !important;
    border-radius: 12px !important;
    border: none !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    box-shadow: 0 8px 30px rgba(250, 115, 67, 0.4) !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    min-width: 300px !important;
    display: inline-block !important;
    position: relative !important;
}

.tito-widget-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 12px;
    pointer-events: none;
}

.tito-widget-button:hover,
.tito-widget-button:focus {
    background-color: var(--primary-dark) !important;
    color: white !important;
    transform: translateY(-5px) scale(1.02) !important;
    box-shadow: 0 15px 40px rgba(250, 115, 67, 0.5) !important;
}

.tito-widget-button:active {
    transform: translateY(-2px) scale(1) !important;
    box-shadow: 0 8px 30px rgba(250, 115, 67, 0.4) !important;
}

@media (max-width: 768px) {
    .tito-widget-button {
        font-size: var(--text-lg) !important;
        padding: 1.25rem 3rem !important;
        min-width: 250px !important;
    }
}

@media (max-width: 480px) {
    .tito-widget-button {
        font-size: var(--text-base) !important;
        padding: 1rem 2rem !important;
        min-width: 100% !important;
        width: 100% !important;
    }
}